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

28 lines
526 B
TypeScript
Raw Normal View History

2023-07-10 18:37:41 +02:00
import { sveltekit } from "@sveltejs/kit/vite";
import adapter from "@sveltejs/adapter-node";
2023-07-18 18:34:53 +02:00
import { SvelteKitPWA } from '@vite-pwa/sveltekit'
2023-07-10 17:44:06 +02:00
2023-07-10 18:37:41 +02:00
const config = {
2023-07-18 18:26:39 +02:00
plugins: [
sveltekit(),
2023-07-18 18:34:53 +02:00
SvelteKitPWA({
strategies: 'injectManifest',
srcDir: 'src',
filename: 'sw.ts',
})
2023-07-18 18:26:39 +02:00
],
2023-07-10 18:37:41 +02:00
test: {
include: ["src/**/*.{test,spec}.{js,ts}"],
},
build: {
minify: "esbuild",
target: "esnext",
},
kit: {
adapter: adapter({
precompress: false,
})
},
};
2023-07-18 18:26:39 +02:00
export default config;