summaryrefslogtreecommitdiff
path: root/examples/component/demo/astro.config.mjs
blob: 2d73a28076056f11c050e6510d534c9434a0ffea (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'],
		},
	},
});