mirror of
https://github.com/web3privacy/news.git
synced 2024-10-15 18:06:26 +02:00
13 lines
307 B
JavaScript
13 lines
307 B
JavaScript
|
import { defineConfig } from 'astro/config';
|
||
|
import tailwind from "@astrojs/tailwind";
|
||
|
import yaml from '@rollup/plugin-yaml';
|
||
|
|
||
|
import svelte from "@astrojs/svelte";
|
||
|
|
||
|
// https://astro.build/config
|
||
|
export default defineConfig({
|
||
|
integrations: [tailwind(), svelte()],
|
||
|
vite: {
|
||
|
plugins: [yaml()],
|
||
|
}
|
||
|
});
|