15 lines
246 B
TypeScript
15 lines
246 B
TypeScript
import { sveltekit } from '@sveltejs/kit/vite';
|
|
import { defineConfig } from 'vite';
|
|
|
|
export default defineConfig({
|
|
plugins: [sveltekit()],
|
|
server: {
|
|
host: true,
|
|
},
|
|
build: {
|
|
commonjsOptions: {
|
|
esmExternals: true
|
|
}
|
|
}
|
|
});
|