Port Change in config to 8004
This commit is contained in:
parent
87d52844b7
commit
df98c971f1
1 changed files with 7 additions and 1 deletions
|
@ -2,5 +2,11 @@ import { sveltekit } from '@sveltejs/kit/vite';
|
||||||
import { defineConfig } from 'vite';
|
import { defineConfig } from 'vite';
|
||||||
|
|
||||||
export default defineConfig({
|
export default defineConfig({
|
||||||
plugins: [sveltekit()]
|
plugins: [sveltekit()],
|
||||||
|
server: {
|
||||||
|
port: 8004,
|
||||||
|
},
|
||||||
|
preview: {
|
||||||
|
port: 8004,
|
||||||
|
},
|
||||||
});
|
});
|
||||||
|
|
Reference in a new issue