Bump to high ports

This commit is contained in:
Felipe Santos
2022-06-17 04:25:13 +00:00
parent dd9a19d179
commit 5da1c5e0cf
6 changed files with 7 additions and 7 deletions
+1 -1
View File
@@ -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
+1 -1
View File
@@ -5,7 +5,7 @@
"workspaceFolder": "/workspace",
"shutdownAction": "stopCompose",
"portsAttributes": {
"5001": {
"41000": {
"label": "Rollup",
"onAutoForward": "silent"
}
+1 -1
View File
@@ -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]
+2 -2
View File
@@ -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/**"]
}
]
}
+1 -1
View File
@@ -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': '*',