Qwik
Ce contenu n’est pas encore disponible dans votre langue.
This guide will walk you through creating your Tauri app using the Qwik web framework. Learn more about Qwik at https://qwik.dev.
Checklist
Section titled “Checklist”- Use SSG. Tauri doesn’t support server-based solutions.
- Use
dist/asfrontendDistintauri.conf.json.
Example Configuration
Section titled “Example Configuration”-
Create a new Qwik app
Section titled “Create a new Qwik app”npm create qwik@latestcd <PROJECT>yarn create qwik@latestcd <PROJECT>pnpm create qwik@latestcd <PROJECT>deno run -A npm:create-qwik@latestcd <PROJECT> -
Install the
Section titled “Install the static adapter”static adapternpm run qwik add staticyarn qwik add staticpnpm qwik add staticdeno task qwik add static -
Add the Tauri CLI to your project
Section titled “Add the Tauri CLI to your project”npm install -D @tauri-apps/cli@latestyarn add -D @tauri-apps/cli@latestpnpm add -D @tauri-apps/cli@latestdeno add -D npm:@tauri-apps/cli@latest -
Initiate a new Tauri project
Section titled “Initiate a new Tauri project”npm run tauri inityarn tauri initpnpm tauri initdeno task tauri init -
Tauri configuration
Section titled “Tauri configuration”tauri.conf.json {"build": {"devUrl": "http://localhost:5173""frontendDist": "../dist","beforeDevCommand": "npm run dev","beforeBuildCommand": "npm run build"}}tauri.conf.json {"build": {"devUrl": "http://localhost:5173""frontendDist": "../dist","beforeDevCommand": "yarn dev","beforeBuildCommand": "yarn build"}}tauri.conf.json {"build": {"devUrl": "http://localhost:5173""frontendDist": "../dist","beforeDevCommand": "pnpm dev","beforeBuildCommand": "pnpm build"}}tauri.conf.json {"build": {"devUrl": "http://localhost:5173""frontendDist": "../dist","beforeDevCommand": "deno task dev","beforeBuildCommand": "deno task build"}} -
Start your
Section titled “Start your tauri app”tauriappnpm run tauri devyarn tauri devpnpm tauri devdeno task tauri dev
© 2026 Tauri Contributors. CC-BY / MIT