From 3aa2e492f7eec4fe2efdd45789f63acfffd1cb83 Mon Sep 17 00:00:00 2001 From: Patrick Kissling Date: Thu, 4 May 2023 08:33:23 +0200 Subject: [PATCH] Run clock-weather-card dev server on 5001 --- .devcontainer/devcontainer.json | 2 +- rollup.config.dev.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index b63b8d4b..8dbd39b8 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -9,7 +9,7 @@ // "features": {}, // Use 'forwardPorts' to make a list of ports inside the container available locally. - "forwardPorts": [5000], + "forwardPorts": [5001], // Use 'postCreateCommand' to run commands after the container is created. "postCreateCommand": "yarn install" diff --git a/rollup.config.dev.js b/rollup.config.dev.js index 8f8a853c..f79836d8 100644 --- a/rollup.config.dev.js +++ b/rollup.config.dev.js @@ -24,7 +24,7 @@ export default { serve({ contentBase: './dist', host: '0.0.0.0', - port: 5000, + port: 5001, allowCrossOrigin: true, headers: { 'Access-Control-Allow-Origin': '*',