mirror of
https://github.com/1f349/lavender.git
synced 2025-01-21 06:06:30 +00:00
20 lines
345 B
JavaScript
20 lines
345 B
JavaScript
// @ts-check
|
|
import {defineConfig} from 'astro/config';
|
|
|
|
import tailwind from '@astrojs/tailwind';
|
|
|
|
import svelte from '@astrojs/svelte';
|
|
|
|
// https://astro.build/config
|
|
export default defineConfig({
|
|
integrations: [
|
|
tailwind({
|
|
nesting: true,
|
|
}),
|
|
svelte({extensions: ['.svelte']}),
|
|
],
|
|
build: {
|
|
format: 'file',
|
|
},
|
|
});
|