Skip to content

Commit feab165

Browse files
committed
fix ports
1 parent eaee155 commit feab165

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

apps/plugin-manager/backend/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@ async function main() {
320320
});
321321

322322
// Start server
323-
const port = 3000;
323+
const port = 4000;
324324
app.listen(port, () => {
325325
console.log(`Server running at http://localhost:${port}`);
326326
});

apps/plugin-manager/frontend/vite.config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ export default defineConfig({
1212
},
1313
},
1414
server: {
15-
port: 5173,
15+
port: 4001,
1616
proxy: {
1717
"/api": {
18-
target: "http://localhost:3000",
18+
target: "http://localhost:4000",
1919
secure: false,
2020
changeOrigin: true,
2121
ws: true,

0 commit comments

Comments
 (0)