From a019e8b69527ef30dccc2c7dd6dac81f86009bc8 Mon Sep 17 00:00:00 2001 From: Tringlyman Date: Sat, 21 Feb 2026 12:01:07 +0200 Subject: [PATCH] Add server configuration with port 8000 this allows vite dev to have the port to 8000, making extensions in development to be unsandboxed because of localhost:8000. it's a small detail but it allows extensions to be unsandboxed if extension developers use the vite dev command because it refreshes and updates website be saving files,making quicker testing --- vite.config.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vite.config.js b/vite.config.js index bbf8c7da4..7ea1708ca 100644 --- a/vite.config.js +++ b/vite.config.js @@ -2,5 +2,8 @@ import { sveltekit } from '@sveltejs/kit/vite'; import { defineConfig } from 'vite'; export default defineConfig({ - plugins: [sveltekit()] + plugins: [sveltekit()], + server: { + port: 8000, + }, });