mirror of
https://github.com/MadeBaruna/paimon-moe.git
synced 2025-03-19 05:31:25 +01:00
12 lines
197 B
JavaScript
12 lines
197 B
JavaScript
|
import { sveltekit } from '@sveltejs/kit/vite';
|
||
|
|
||
|
/** @type {import('vite').UserConfig} */
|
||
|
const config = {
|
||
|
plugins: [sveltekit()],
|
||
|
build: {
|
||
|
sourcemap: true,
|
||
|
},
|
||
|
};
|
||
|
|
||
|
export default config;
|