web/astro.config.mjs

19 lines
443 B
JavaScript
Raw Permalink Normal View History

2023-11-13 03:03:34 +01:00
import { defineConfig } from 'astro/config';
import tailwind from "@astrojs/tailwind";
import yaml from '@rollup/plugin-yaml';
2024-03-06 17:28:41 +01:00
import svelte from "@astrojs/svelte";
2023-11-13 03:03:34 +01:00
// https://astro.build/config
export default defineConfig({
site: 'https://beta.web3privacy.info',
2024-03-06 17:28:41 +01:00
integrations: [tailwind(), svelte()],
2023-11-13 03:03:34 +01:00
vite: {
plugins: [yaml()],
server: {
watch: {
2024-03-06 17:28:41 +01:00
ignored: ["**/.sl/**/*", "**/.watchman-**"]
}
}
}
2023-11-13 03:03:34 +01:00
});