mirror of
https://github.com/ivabus/gui
synced 2025-04-24 06:27:09 +03:00
12 lines
187 B
TypeScript
12 lines
187 B
TypeScript
import { sveltekit } from '@sveltejs/kit/vite';
|
|
|
|
/** @type {import('vite').UserConfig} */
|
|
const config = {
|
|
plugins: [sveltekit()],
|
|
|
|
server: {
|
|
port: 3000
|
|
}
|
|
};
|
|
|
|
export default config;
|