diff --git a/.vscode/launch.json b/.vscode/launch.json index 57cfd0a..fad7947 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -9,8 +9,8 @@ "type": "node", "serverReadyAction": { "action": "debugWithChrome", - "pattern": "127.0.0.1:.*m([0-9]+)", - "uriFormat": "http://127.0.0.1:%s" + "pattern": "localhost:.*m([0-9]+)", + "uriFormat": "http://localhost:%s" } } ] diff --git a/automation/neu-template.json b/automation/neu-template.json index 8367c81..ba4e583 100644 --- a/automation/neu-template.json +++ b/automation/neu-template.json @@ -39,7 +39,7 @@ "clientVersion": "3.12.0", "frontendLibrary": { "patchFile": "/src/index.html", - "devUrl": "http://127.0.0.1:5173", + "devUrl": "http://localhost:5173", "projectPath": "/", "initCommand": "echo", "devCommand": "echo", diff --git a/package.json b/package.json index 36ca2d4..f63d63d 100644 --- a/package.json +++ b/package.json @@ -16,7 +16,7 @@ "phaser3-rex-plugins": "^1.60.9" }, "devDependencies": { - "@neutralinojs/neu": "10.1.0", + "@neutralinojs/neu": "^10.1.1", "png-to-ico": "^2.1.8", "resedit": "^2.0.0", "rimraf": "^5.0.5", diff --git a/vite.config.ts b/vite.config.ts index 27e468b..9efb440 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -64,7 +64,7 @@ export default () => { }, }, server: { - host: '127.0.0.1', + host: 'localhost', }, }); };