mirror of
https://github.com/web3privacy/web
synced 2024-10-15 18:26:27 +02:00
19 lines
No EOL
443 B
JavaScript
19 lines
No EOL
443 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({
|
|
site: 'https://beta.web3privacy.info',
|
|
integrations: [tailwind(), svelte()],
|
|
vite: {
|
|
plugins: [yaml()],
|
|
server: {
|
|
watch: {
|
|
ignored: ["**/.sl/**/*", "**/.watchman-**"]
|
|
}
|
|
}
|
|
}
|
|
}); |