I've got a react app and implemented tauri to it so I can make it a desktop application.
I have two .env files: .env.development and .env.production.
When i run tauri dev
everything works correctly, but when I run tauri build
is running without the enviroment variables in the production or the development env files.
I'm attaching a snap of my tauri.conf.json as I hope it helps.
{
"$schema": "../node_modules/@tauri-apps/cli/schema.json",
"build": {
"beforeBuildCommand": "npm run build",
"beforeDevCommand": "npm start",
"devPath": "http://localhost:3000",
"distDir": "../build"
},
"package": {
"productName": "AppName",
"version": "1.2.3"
},
"tauri": {
"allowlist": {
"all": true
},
"bundle": {
"active": true,
"category": "DeveloperTool",
"copyright": "",
"deb": {
"depends": []
},
"externalBin": [],
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/[email protected]",
"icons/icon.icns",
"icons/icon.ico"
],
"identifier": "com.myappname.app",
"longDescription": "",
"macOS": {
"entitlements": null,
"exceptionDomain": "",
"frameworks": [],
"providerShortName": null,
"signingIdentity": null
},
"resources": [],
"shortDescription": "",
"targets": "all",
"windows": {
"certificateThumbprint": null,
"digestAlgorithm": "sha256",
"timestampUrl": ""
}
},
"security": {
"csp": null
},
"updater": {
"active": false
},
"windows": [
{
"fullscreen": false,
"height": 1080,
"resizable": true,
"title": "AppName",
"width": 1920
}
]
}
}
Thanks in advance!