Refactoring: made the server run on its local port.
This commit is contained in:
parent
293752db2c
commit
f9e9ad1297
2 changed files with 5 additions and 1 deletions
0
frontend/.gitattributes → .gitattributes
vendored
0
frontend/.gitattributes → .gitattributes
vendored
|
@ -2,5 +2,9 @@ import { sveltekit } from '@sveltejs/kit/vite';
|
|||
import { defineConfig } from 'vite';
|
||||
|
||||
export default defineConfig({
|
||||
plugins: [sveltekit()]
|
||||
plugins: [sveltekit()],
|
||||
server: {
|
||||
host: '0.0.0.0',
|
||||
port: 5125,
|
||||
},
|
||||
});
|
||||
|
|
Loading…
Add table
Reference in a new issue