⬆️ Updated sveltekit to latest, adapter-node was the problem

This commit is contained in:
Mawoka
2022-07-09 12:26:42 +02:00
parent 27a598f2a3
commit 10a2adb57e
4 changed files with 21 additions and 21 deletions
+14
View File
@@ -0,0 +1,14 @@
import { sveltekit } from '@sveltejs/kit/vite';
/** @type {import('vite').UserConfig} */
const config = {
plugins: [sveltekit()],
optimizeDeps: {
include: ['swiper']
},
build: {
sourcemap: true
}
};
export default config;