mirror of
https://github.com/web3privacy/web
synced 2024-10-15 18:26:27 +02:00
18 lines
No EOL
380 B
JavaScript
18 lines
No EOL
380 B
JavaScript
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: {
|
|
ignored: ["**/.sl/**/*"],
|
|
},
|
|
},
|
|
},
|
|
}); |