added more boilerplate

Signed-off-by: Ash Entwisle <ash.entwisle@protonmail.com>
issue/index
Ash Entwisle 2023-09-13 01:07:52 +00:00
parent 97b98a8f51
commit 16be6224f9
No known key found for this signature in database
GPG Key ID: 0E3CBB6B4BE9FE33
9 changed files with 5890 additions and 3 deletions

View File

@ -1,4 +1,15 @@
import { defineConfig } from 'astro/config';
import tailwind from "@astrojs/tailwind";
import mdx from "@astrojs/mdx";
import partytown from "@astrojs/partytown";
import sitemap from "@astrojs/sitemap";
import prefetch from "@astrojs/prefetch";
import cloudflare from "@astrojs/cloudflare";
// https://astro.build/config
export default defineConfig({});
export default defineConfig({
integrations: [tailwind(), mdx(), partytown(), sitemap(), prefetch()],
output: "server",
adapter: cloudflare()
});

BIN
bun.lockb

Binary file not shown.

5861
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

View File

@ -10,6 +10,13 @@
"astro": "astro"
},
"dependencies": {
"astro": "^3.0.13"
"@astrojs/cloudflare": "^7.1.0",
"@astrojs/mdx": "^1.0.3",
"@astrojs/partytown": "^2.0.0",
"@astrojs/prefetch": "^0.4.0",
"@astrojs/sitemap": "^3.0.0",
"@astrojs/tailwind": "^5.0.0",
"astro": "^3.0.13",
"tailwindcss": "^3.0.24"
}
}
}

View File

View File

View File

View File

8
tailwind.config.cjs Normal file
View File

@ -0,0 +1,8 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
theme: {
extend: {},
},
plugins: [],
}