blob: d92b7a872cdba1b42483807f3da420d4612c6c24 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
import { defineConfig } from 'astro/config';
// https://astro.build/config
export default defineConfig({
vite: {
ssr: {
noExternal: ['@example/my-component']
},
},
});
|