43 lines
1.2 KiB
JavaScript
43 lines
1.2 KiB
JavaScript
import { defineConfig } from "vite";
|
|
import react from "@vitejs/plugin-react";
|
|
import tailwindcss from "@tailwindcss/vite";
|
|
import path from "path";
|
|
|
|
const host = process.env.TAURI_DEV_HOST;
|
|
|
|
export default defineConfig({
|
|
base: "./", // <--- КРИТИЧНО ДЛЯ TAURI PROD!
|
|
plugins: [react(), tailwindcss()],
|
|
resolve: {
|
|
alias: {
|
|
"@": path.resolve(__dirname, "./src"),
|
|
"vpn-plugin": path.resolve(
|
|
__dirname,
|
|
"./src-tauri/src/plugins/vpn-plugin/guest-js",
|
|
),
|
|
react: path.resolve(__dirname, "node_modules/react"),
|
|
"react-dom": path.resolve(__dirname, "node_modules/react-dom"),
|
|
},
|
|
},
|
|
clearScreen: false,
|
|
server: {
|
|
host: "0.0.0.0",
|
|
port: 1420,
|
|
strictPort: true,
|
|
hmr: host
|
|
? {
|
|
protocol: "ws",
|
|
host: "localhost",
|
|
port: 1421,
|
|
}
|
|
: undefined,
|
|
},
|
|
envPrefix: ["VITE_", "TAURI_ENV_*"],
|
|
build: {
|
|
target: "esnext", // <--- Лучше ставить esnext, чтобы не было конфликтов с WASM и топ-левел await
|
|
minify: !process.env.TAURI_ENV_DEBUG ? "esbuild" : false,
|
|
sourcemap: !!process.env.TAURI_ENV_DEBUG,
|
|
assetsInlineLimit: 0,
|
|
},
|
|
});
|