From 7f894cc62ee45d8e4a61d93db34861cc7575445f Mon Sep 17 00:00:00 2001 From: jprochazk <1665677+jprochazk@users.noreply.github.com> Date: Tue, 5 Dec 2023 10:41:22 +0100 Subject: [PATCH] specify port --- vite.config.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/vite.config.js b/vite.config.js index a043d0a..a999a1f 100644 --- a/vite.config.js +++ b/vite.config.js @@ -4,6 +4,9 @@ import topLevelAwait from "vite-plugin-top-level-await"; /** @type {import("vite").UserConfig} */ const config = { plugins: [wasm(), topLevelAwait()], + server: { + port: 5173, + }, }; if ("REPOSITORY" in process.env) {