I want to seta environment-variable TAURI_DEV_IGNORE_FILE to .tauriignore, that ignores every *.sqlite. But I don't know where to set the variable. I tried it in the .env of vite, a .env.development in the tauri source folder and I tried to set it directly in windows. But I don't get it to work, maybe I am just lost xD. I hope someone can help me and thank you already once
#How to set TAURI_DEV_IGNORE_FILE
6 messages · Page 1 of 1 (latest)
So .env files indeed don't matter, that's mostly a frontend bundler thing.
and I tried to set it directly in windows
Did you restart your system afterwards?
You can also set it per terminal session. If you use powershell you could do ```pwsh
$env:TAURI_DEV_IGNORE_FILE="whatever"
npm run tauri dev