16 lines
286 B
TypeScript
16 lines
286 B
TypeScript
import { sveltekit } from '@sveltejs/kit/vite';
|
|
import { defineConfig } from 'vite';
|
|
|
|
export default defineConfig({
|
|
plugins: [sveltekit()],
|
|
build: {
|
|
assetsInlineLimit: 0,
|
|
cssCodeSplit: true,
|
|
sourcemap: false,
|
|
target: 'esnext',
|
|
modulePreload: {
|
|
polyfill: false
|
|
}
|
|
}
|
|
});
|