diff --git a/.devcontainer/config/configuration.yaml b/.devcontainer/config/configuration.yaml index 0541c630..0f07e864 100644 --- a/.devcontainer/config/configuration.yaml +++ b/.devcontainer/config/configuration.yaml @@ -24,5 +24,5 @@ demo: lovelace: mode: yaml resources: - - url: http://localhost:5001/frigate-hass-card.js + - url: http://localhost:41000/frigate-hass-card.js type: module diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 7fa2e5e8..accd1c79 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -5,7 +5,7 @@ "workspaceFolder": "/workspace", "shutdownAction": "stopCompose", "portsAttributes": { - "5001": { + "41000": { "label": "Rollup", "onAutoForward": "silent" } diff --git a/.devcontainer/docker-compose.yml b/.devcontainer/docker-compose.yml index 77ca4c1b..5c19d6e1 100644 --- a/.devcontainer/docker-compose.yml +++ b/.devcontainer/docker-compose.yml @@ -6,7 +6,7 @@ services: image: mcr.microsoft.com/vscode/devcontainers/javascript-node:0-16 ports: # Rollup - - 5001:5001 + - 41000:41000 volumes: - ..:/workspace:cached command: [sleep, infinity] diff --git a/.devcontainer/frigate-hass-integration b/.devcontainer/frigate-hass-integration index 05138164..fdc2bbf5 160000 --- a/.devcontainer/frigate-hass-integration +++ b/.devcontainer/frigate-hass-integration @@ -1 +1 @@ -Subproject commit 051381644bac7d5c037be6bc2f7eaabb9b3d95a0 +Subproject commit fdc2bbf5734a581adc3030ecb05de52f4c8954f6 diff --git a/.vscode/launch.json b/.vscode/launch.json index 5f22a3f4..328688a9 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -5,10 +5,10 @@ "type": "pwa-chrome", "request": "launch", "name": "Launch Chrome against Home Assistant", - "url": "http://localhost:8123", + "url": "http://localhost:48123", "webRoot": "${workspaceFolder}/dist", "preLaunchTask": "Rollup", - "resolveSourceMapLocations": ["http://localhost:5001/**"] + "resolveSourceMapLocations": ["http://localhost:41000/**"] } ] } diff --git a/rollup.config.js b/rollup.config.js index 62bff63a..4e874b63 100644 --- a/rollup.config.js +++ b/rollup.config.js @@ -18,7 +18,7 @@ const dev = watch || process.env.DEV === 'true' || process.env.DEV === '1'; const serveopts = { contentBase: ['./dist'], host: '0.0.0.0', - port: 5001, + port: 41000, allowCrossOrigin: true, headers: { 'Access-Control-Allow-Origin': '*',