跳转到内容
Tauri

Qwik

本指南将引导您使用 Qwik Web 框架创建 Tauri 应用程序。了解更多关于 Qwik 的信息,请访问 https://qwik.dev

清单

  • Tauri 不支持基于服务器的解决方案。请使用 SSG
  • tauri.conf.json 中将 frontendDist 设置为 dist/

示例配置

  1. npm create qwik@latest
    cd <PROJECT>
  2. npm run qwik add static
  3. npm install -D @tauri-apps/cli
  4. npm run tauri init
  5. tauri.conf.json
    {
    "build": {
    "devUrl": "http://localhost:5173"
    "frontendDist": "../dist",
    "beforeDevCommand": "npm run dev",
    "beforeBuildCommand": "npm run build"
    }
    }
  6. npm run tauri dev

© 2024 Tauri Contributors. CC-BY / MIT