Port Change in config to 8004

This commit is contained in:
Neshura 2023-08-08 19:40:09 +02:00
parent 87d52844b7
commit df98c971f1
Signed by: Neshura
GPG key ID: B6983AAA6B9A7A6C

View file

@ -2,5 +2,11 @@ import { sveltekit } from '@sveltejs/kit/vite';
import { defineConfig } from 'vite';
export default defineConfig({
plugins: [sveltekit()]
plugins: [sveltekit()],
server: {
port: 8004,
},
preview: {
port: 8004,
},
});