2024-11-28 00:16:07 +00:00
|
|
|
// @ts-check
|
2024-12-07 19:44:50 +00:00
|
|
|
import {defineConfig} from 'astro/config';
|
2024-11-28 00:16:07 +00:00
|
|
|
|
2024-12-07 12:01:04 +00:00
|
|
|
import tailwind from '@astrojs/tailwind';
|
|
|
|
|
2025-01-10 00:37:43 +00:00
|
|
|
import svelte from '@astrojs/svelte';
|
|
|
|
|
2024-11-28 00:16:07 +00:00
|
|
|
// https://astro.build/config
|
2024-12-07 12:01:04 +00:00
|
|
|
export default defineConfig({
|
2025-01-19 12:04:25 +00:00
|
|
|
integrations: [
|
|
|
|
tailwind({
|
|
|
|
nesting: true,
|
|
|
|
}),
|
|
|
|
svelte({extensions: ['.svelte']}),
|
|
|
|
],
|
2025-01-10 00:37:43 +00:00
|
|
|
build: {
|
|
|
|
format: 'file',
|
|
|
|
},
|
2024-12-07 19:44:50 +00:00
|
|
|
});
|