sk-node / app /vite.config.ts
Ron Au
build(app): Add SvelteKit
6c12e37
raw
history blame contribute delete
No virus
225 Bytes
import { sveltekit } from '@sveltejs/kit/vite';
import type { UserConfig } from 'vite';
process.env.PORT = '7860';
const config: UserConfig = {
plugins: [sveltekit()],
server: {
port: 7860
}
};
export default config;