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 } } }