mirror of
https://github.com/mat-1/matdoesdev.git
synced 2025-08-02 14:46:04 +00:00
12 lines
180 B
JavaScript
12 lines
180 B
JavaScript
import { sveltekit } from '@sveltejs/kit/vite'
|
|
|
|
/** @type {import('vite').UserConfig} */
|
|
export default {
|
|
plugins: [sveltekit()],
|
|
|
|
build: {
|
|
target: 'es2020',
|
|
},
|
|
|
|
base: '',
|
|
}
|