File size: 225 Bytes
6c12e37
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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;