mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-08-21 10:54:08 +02:00
93 lines
3.1 KiB
TypeScript
93 lines
3.1 KiB
TypeScript
// @ts-ignore
|
|
import { tanstackRouter } from "@tanstack/router-plugin/vite";
|
|
import react from "@vitejs/plugin-react";
|
|
import { createRequire } from "node:module";
|
|
import path from "node:path";
|
|
import { defineConfig, normalizePath } from "vite-plus";
|
|
import { viteStaticCopy } from "vite-plugin-static-copy";
|
|
import svgr from "vite-plugin-svgr";
|
|
import wasm from "vite-plugin-wasm";
|
|
|
|
const require = createRequire(import.meta.url);
|
|
const cMapsDir = normalizePath(
|
|
path.join(path.dirname(require.resolve("pdfjs-dist/package.json")), "cmaps"),
|
|
);
|
|
const standardFontsDir = normalizePath(
|
|
path.join(path.dirname(require.resolve("pdfjs-dist/package.json")), "standard_fonts"),
|
|
);
|
|
|
|
/**
|
|
* Which host the platform package installs. `web` builds Yaak to run in a plain
|
|
* browser tab, with its own IndexedDB store instead of the Rust engine; anything
|
|
* else builds the desktop app exactly as before.
|
|
*/
|
|
const yaakTarget = process.env.YAAK_TARGET === "web" ? "web" : "desktop";
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig(async () => {
|
|
return {
|
|
resolve: {
|
|
alias:
|
|
yaakTarget === "web"
|
|
? {
|
|
// Resolve the platform package to its browser entry, so a web
|
|
// build never pulls `@tauri-apps/*` into the graph at all. A
|
|
// build-time branch inside the package would not manage that:
|
|
// the dead branch folds away, but the imports it guarded stay.
|
|
"@yaakapp-internal/platform": path.resolve(
|
|
import.meta.dirname,
|
|
"../../packages/platform/src/index.web.ts",
|
|
),
|
|
}
|
|
: {},
|
|
},
|
|
// The browser host runs the model layer in a worker; that bundle needs the
|
|
// same wasm handling as the main one. Top-level await needs no transform
|
|
// because the build targets esnext.
|
|
worker: {
|
|
format: "es" as const,
|
|
plugins: () => [wasm()],
|
|
},
|
|
plugins: [
|
|
wasm(),
|
|
tanstackRouter({
|
|
target: "react",
|
|
routesDirectory: "./routes",
|
|
generatedRouteTree: "./routeTree.gen.ts",
|
|
autoCodeSplitting: true,
|
|
}),
|
|
svgr(),
|
|
react(),
|
|
viteStaticCopy({
|
|
targets: [
|
|
{ src: cMapsDir, dest: "" },
|
|
{ src: standardFontsDir, dest: "" },
|
|
],
|
|
}),
|
|
],
|
|
build: {
|
|
target: "esnext",
|
|
sourcemap: true,
|
|
outDir: "../../dist/apps/yaak-client",
|
|
emptyOutDir: true,
|
|
rolldownOptions: {
|
|
output: {
|
|
// Make chunk names readable
|
|
chunkFileNames: "assets/chunk-[name]-[hash].js",
|
|
entryFileNames: "assets/entry-[name]-[hash].js",
|
|
assetFileNames: "assets/asset-[name]-[hash][extname]",
|
|
// Vite-Plus/Rolldown 0.1.20 can emit a stale style-mod export when
|
|
// top-level var rewriting combines with OXC minification.
|
|
topLevelVar: false,
|
|
},
|
|
},
|
|
},
|
|
clearScreen: false,
|
|
server: {
|
|
port: parseInt(process.env.YAAK_CLIENT_DEV_PORT ?? process.env.YAAK_DEV_PORT ?? "1420", 10),
|
|
strictPort: true,
|
|
},
|
|
envPrefix: ["VITE_", "TAURI_"],
|
|
};
|
|
});
|