Hi, I have encountered an error with my tauri config that used alpha version and said to switch to beta version.
From this cofig ```{
"build": {
"beforeBuildCommand": "yarn build",
"beforeDevCommand": "yarn dev",
"devPath": "http://localhost:1420",
"distDir": "../out",
"withGlobalTauri": true
},
"package": {
"productName": "citadel_workspace",
"version": "0.0.0"
},
"plugins": {
"shell": {
"open": true
}
},
"tauri": {
"bundle": {
"active": true,
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
],
"identifier": "citadel.workspace",
"targets": "all"
},
"security": {
"csp": null
},
"windows": [
{
"fullscreen": false,
"height": 600,
"resizable": true,
"title": "Citadel Workspace",
"width": 800
}
]
}
}
```{
"build": {
"beforeBuildCommand": "yarn build",
"beforeDevCommand": "yarn dev"
},
"plugins": {
"shell": {
"open": true
}
}
}
Is this a good behavior? I'm using Nextjs in the app, not spcifing the dist folder would cause a problem in finding the path to the dist files.
Also, it doesn't seem to open the app window automatically.