web/astro.config.mjs

18 lines
399 B
JavaScript
Raw 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';
// https://astro.build/config
export default defineConfig({
site: 'https://beta.web3privacy.info',
integrations: [tailwind()],
vite: {
plugins: [yaml()],
server: {
watch: {
2023-12-20 23:14:44 +01:00
ignored: ["**/.sl/**/*", "**/.watchman-**"],
2023-11-13 03:03:34 +01:00
},
},
},
});