mirror of
https://github.com/LukeHagar/sveltekit-electron-adapter.git
synced 2025-12-06 04:21:32 +00:00
12 lines
188 B
JavaScript
12 lines
188 B
JavaScript
import { sveltekit } from '@sveltejs/kit/vite';
|
|
|
|
/** @type {import('vite').UserConfig} */
|
|
const config = {
|
|
build: {
|
|
minify: false
|
|
},
|
|
plugins: [sveltekit()]
|
|
};
|
|
|
|
export default config;
|