fix(js-cli) move automaticStart to the correct place on tauri.conf.js

This commit is contained in:
Lucas
2019-11-30 09:00:06 -03:00
parent 6dcccf5a8e
commit 5976fced38

View File

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