rust Tauri生产构建

j2cgzkjk  于 2023-04-21  发布在  其他
关注(0)|答案(1)|浏览(132)

我正在使用Rust和tauri。我已经创建了基础应用程序。如果我构建它,安装后工作正常

# build command
cargo tauri build

# installation
sudo dpkg -i tauri-app.0.0.0.deb

下一步,我创建了一个新文件index2.html,并在index.html中添加了以下行

<a href="index2.html">Open the second file </a>

如果我运行以下命令:

cargo tauri dev

工作正常,我可以访问index2.html,但如果我构建和安装,index 2无法找到。
任何帮助将不胜感激。
-----编辑-----
在阅读了Creating additional HTML pages之后,我做了一些改进。

import { defineConfig } from "vite";
import { resolve } from 'path';

const mobile =
  process.env.TAURI_PLATFORM === "android" ||
  process.env.TAURI_PLATFORM === "ios";

// https://vitejs.dev/config/
export default defineConfig(async () => ({
  // Vite options tailored for Tauri development and only applied in `tauri dev` or `tauri build`
  // prevent vite from obscuring rust errors
  clearScreen: false,
  // tauri expects a fixed port, fail if that port is not available
  server: {
    port: 1420,
    strictPort: true,
  },
  // to make use of `TAURI_DEBUG` and other env variables
  // https://tauri.studio/v1/api/config#buildconfig.beforedevcommand
  envPrefix: ["VITE_", "TAURI_"],
  build: {
    // Tauri supports es2021
    target: process.env.TAURI_PLATFORM == "windows" ? "chrome105" : "safari13",
    // don't minify for debug builds
    minify: !process.env.TAURI_DEBUG ? "esbuild" : false,
    // produce sourcemaps for debug builds
    sourcemap: !!process.env.TAURI_DEBUG,
// added code
    build: {
      rollupOptions: {
        input: {
          index: resolve(__dirname, 'index.html'),
          index2: resolve(__dirname, 'index2.html'),
        },
      },
    },
  },
}));

但是,没有看到任何改善。

xwbd5t1u

xwbd5t1u1#

我已经解决了这个问题。
1.最新的create-tauri-app命令默认注入所有vite。
1.我需要告诉vite处理我的html文件以外的index.html这样做,我不得不注册文件名vite.config.ts文件。详细信息在下面的页面中描述创建其他HTML页面
1.我有一些问题与图像。为了解决这个问题,我按照指南从这个vite网页导入资产作为网址

相关问题