This commit is contained in:
purifetchi 2025-01-06 16:09:40 +01:00
parent a2b13912a6
commit 6e591095b8
4 changed files with 993 additions and 7 deletions

View file

@ -1,5 +1,9 @@
// @ts-check
import { defineConfig } from 'astro/config';
import tailwind from '@astrojs/tailwind';
// https://astro.build/config
export default defineConfig({});
export default defineConfig({
integrations: [tailwind()]
});

980
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -9,6 +9,8 @@
"astro": "astro"
},
"dependencies": {
"astro": "^5.1.2"
"@astrojs/tailwind": "^5.1.4",
"astro": "^5.1.2",
"tailwindcss": "^3.4.17"
}
}
}

8
tailwind.config.mjs Normal file
View file

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