pianello-web-app/frontend/vite.config.ts

21 lines
334 B
TypeScript
Raw Normal View History

2023-12-22 11:38:27 +01:00
import { sveltekit } from '@sveltejs/kit/vite';
2024-03-06 00:14:26 +01:00
import adapter from '@sveltejs/adapter-node';
2023-07-10 17:44:06 +02:00
2023-07-10 18:37:41 +02:00
const config = {
2024-03-06 00:14:26 +01:00
plugins: [sveltekit()],
test: {
include: ['src/**/*.{test,spec}.{js,ts}']
},
build: {
minify: 'esbuild',
target: 'esnext'
},
kit: {
adapter: adapter({
precompress: false
})
}
2023-07-10 18:37:41 +02:00
};
2023-07-19 15:02:38 +02:00
export default config;