From df98c971f1e782ab79167dc4db6698d0aff3196d Mon Sep 17 00:00:00 2001 From: Neshura Date: Tue, 8 Aug 2023 19:40:09 +0200 Subject: [PATCH] Port Change in config to 8004 --- vite.config.ts | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/vite.config.ts b/vite.config.ts index bbf8c7d..1f4a21b 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -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, + }, });