Files
EzVibeR/vite.config.ts
2026-06-14 16:29:59 +08:00

44 lines
1.3 KiB
TypeScript

import { defineConfig } from "vite";
import vue from "@vitejs/plugin-vue";
import alias from "@rollup/plugin-alias";
import { resolve } from "path";
import path from "path";
// https://vitejs.dev/config/
export default defineConfig({
plugins: [
vue(),
alias({
entries: [{ find: "@", replacement: resolve("./src") }],
}),
],
// 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: {
rollupOptions: {
input: {
index: path.resolve(__dirname, "index.html"),
live2d: path.resolve(__dirname, "live2d.html"),
health: path.resolve(__dirname, "health.html"),
chat: path.resolve(__dirname, "chat.html"),
},
},
// Tauri supports es2021
target: ["es2021", "chrome100", "safari13"],
// don't minify for debug builds
minify: !process.env.TAURI_DEBUG ? "esbuild" : false,
// produce sourcemaps for debug builds
sourcemap: !!process.env.TAURI_DEBUG,
},
});