Skip to content

Commit 193d914

Browse files
committed
use actual value from .env for Vite port
1 parent 126960b commit 193d914

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

builder-frontend/vite.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export default defineConfig(({ mode }) => {
88
return {
99
plugins: [solid(), tsconfigPaths()],
1010
server: {
11-
port: process.env.DEV_SERVER_PORT || 5173,
11+
port: env.DEV_SERVER_PORT || 5173,
1212
// Proxy to connect to backend
1313
// https://vite.dev/config/server-options#server-proxy
1414
proxy: {

0 commit comments

Comments
 (0)