From 5976fced38e85d6bc0a2990e7ab3daea040b086c Mon Sep 17 00:00:00 2001 From: Lucas Date: Sat, 30 Nov 2019 09:00:06 -0300 Subject: [PATCH] fix(js-cli) move automaticStart to the correct place on tauri.conf.js --- cli/tauri.js/templates/tauri.conf.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cli/tauri.js/templates/tauri.conf.js b/cli/tauri.js/templates/tauri.conf.js index 8612c3a87..582c83b18 100644 --- a/cli/tauri.js/templates/tauri.conf.js +++ b/cli/tauri.js/templates/tauri.conf.js @@ -3,9 +3,6 @@ const distDir = path.resolve(__dirname, './dist') module.exports = function () { return { - automaticStart: { - active: true - }, build: { distDir: distDir, devPath: 'http://localhost:4000' // devServer URL or path to html file @@ -29,6 +26,9 @@ module.exports = function () { }, edge: { active: true + }, + automaticStart: { + active: true } } }