applications-tracker/site/vite.config.ts

15 lines
246 B
TypeScript
Raw Permalink Normal View History

2024-09-11 18:11:44 +01:00
import { sveltekit } from '@sveltejs/kit/vite';
import { defineConfig } from 'vite';
export default defineConfig({
2024-10-07 13:40:36 +01:00
plugins: [sveltekit()],
2024-10-13 11:37:19 +01:00
server: {
host: true,
},
2024-10-07 13:40:36 +01:00
build: {
commonjsOptions: {
esmExternals: true
}
}
2024-09-11 18:11:44 +01:00
});