WIP: local production settings updates

This commit is contained in:
2026-07-12 03:55:26 +02:00
parent 4e3bf6dab0
commit 3268e53642
5 changed files with 18 additions and 9 deletions

View File

@@ -13,7 +13,7 @@ const envHosts = (process.env.PUBLIC_ALLOWED_HOSTS || '')
.filter(Boolean);
const allowedHosts = Array.from(
new Set(['localhost', '127.0.0.1', ...envHosts])
new Set(['localhost', '127.0.0.1', 'serviseri-004.captain.mitteworkspace.cloud', ...envHosts])
);
const hmrHost = process.env.PUBLIC_HMR_HOST || 'localhost';
@@ -70,4 +70,4 @@ export default defineConfig({
},
integrations: [preact()],
});
});