fix select bridge

This commit is contained in:
2026-07-02 19:42:26 +03:00
parent 59750206ab
commit ccd05ffb97
3 changed files with 8 additions and 2 deletions

View File

@@ -5,6 +5,6 @@ import tsconfigPaths from 'vite-tsconfig-paths'
export default defineConfig({
plugins: [react(), tsconfigPaths()],
server: {
port: 3000,
port: Number(process.env.PORT) || 3000,
},
})