Getting the error in the title/screen screenshot when a specific page on my tauri app loads. My css fails to load when I get this error message. According to the console it's coming from this line of my code: const installedDir = await store.get('atavismxi-dir')
I am browsing through other support topics with a similar error message. I am not running tauri in a browser. Not using tauri 2.0.
Possible relevant code surrounding the line giving the error:
onMount(async () => {
const store = new Store('.settings.dat')
const installedDir = await store.get('atavismxi-dir')
await checkForCli(installedDir + gameFolder + '/Ashita-cli.exe')
await checkForWine(installedDir)
cliWatcher = await watch(
installedDir + gameFolder,
async (event) => {
checkForCli(installedDir + gameFolder + '/Ashita-cli.exe')
},
{ recursive: true },
)
})