We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eaee155 commit feab165Copy full SHA for feab165
apps/plugin-manager/backend/src/index.ts
@@ -320,7 +320,7 @@ async function main() {
320
});
321
322
// Start server
323
- const port = 3000;
+ const port = 4000;
324
app.listen(port, () => {
325
console.log(`Server running at http://localhost:${port}`);
326
apps/plugin-manager/frontend/vite.config.ts
@@ -12,10 +12,10 @@ export default defineConfig({
12
},
13
14
server: {
15
- port: 5173,
+ port: 4001,
16
proxy: {
17
"/api": {
18
- target: "http://localhost:3000",
+ target: "http://localhost:4000",
19
secure: false,
20
changeOrigin: true,
21
ws: true,
0 commit comments