pianello-web-app/frontend/vite.config.ts
Alessio Davoli bb53698682
All checks were successful
ci/woodpecker/push/build Pipeline was successful
Remove any configuration relative to sw.js
2023-07-19 17:17:32 +02:00

22 lines
367 B
TypeScript

import { sveltekit } from "@sveltejs/kit/vite";
import adapter from "@sveltejs/adapter-node";
const config = {
plugins: [
sveltekit(),
],
test: {
include: ["src/**/*.{test,spec}.{js,ts}"],
},
build: {
minify: "esbuild",
target: "esnext",
},
kit: {
adapter: adapter({
precompress: false,
})
},
};
export default config;