Upgrade sveltekit

This commit is contained in:
Arhey 2023-02-17 10:31:00 +03:00
parent 3214263336
commit a332223828
54 changed files with 1295 additions and 584 deletions

14
vite.config.js Normal file
View file

@ -0,0 +1,14 @@
import { sveltekit } from '@sveltejs/kit/vite'
import path from 'path'
/** @type {import('vite').UserConfig} */
const config = {
plugins: [sveltekit()],
server: {
https: false,
host: '127.0.0.1',
port: 3333
}
}
export default config