cosi-conda

Results 4 comments of cosi-conda

I think I _finally_ found the _cause_. It looks like the macos bundler doesn't include the version and arch in the tar.gz on build: https://github.com/tauri-apps/tauri/blob/076e1a81a50468e3dfb34ae9ca7e77c5e1758daa/tooling/bundler/src/bundle/updater_bundle.rs#L89 but the updater expects the...

@FabianLars Thank you for getting back to me! I realized I get NotFound when it's in dev, but I still get the cross link error with the installed app. Manually...

@FabianLars If you don't use a [tauri-action](https://github.com/tauri-apps/tauri-action) and just use the [tauri build](https://github.com/tauri-apps/tauri/blob/076e1a81a50468e3dfb34ae9ca7e77c5e1758daa/examples/resources/README.md?plain=1#L41), I think that's where we might see the discrepancy? I did not update the packages, but I'm...

Have you tried this? package.json: `"build:local": "webpack --mode development --env NODE_ENV=local",` webpack config: ``` module.exports = async (env, options) => { ... new DotenvWebpackPlugin({ systemvars: true, path: `./env/.env.${env.NODE_ENV}` // This...