After install tauri windows app not running in windows 11 pro 64bit [closed]

I am using Tauri creating first windows App, as mentioned steps over the Tauri site. Installer created and installing successful .msi/.exe, but after run app showing blue alert [This app can’t run on your system]

tauri.config.json

"bundle": {
  "active": true,
  "targets": "all",
  "identifier": "firstappOne",
  "icon": [
    "icons/32x32.png",
    "icons/128x128.png",
    "icons/[email protected]",
    "icons/icon.icns",
    "icons/icon.ico"
  ]
}

Package.json

{
  "name": "firstapp",
  "private": true,
  "version": "0.0.0",
  "type": "module",
  "scripts": {
    "dev": "vite",
    "build": "tsc && vite build",
    "preview": "vite preview",
    "tauri": "tauri"
  },
  "dependencies": {
    "@tauri-apps/api": "^1.5.2"
  },
  "devDependencies": {
    "@tauri-apps/cli": "^1.5.9",
    "typescript": "^5.0.2",
    "vite": "^5.0.0"
  }
}

Anybody kindly help to understand the issue because I follow the Tauri doc properly but app not running.

Kindly suggest what is missing.

Leave a Comment