mirror of
https://github.com/wavetermdev/waveterm.git
synced 2024-12-21 16:38:23 +01:00
484d58b88d
For some reason, @ paths in emain.ts weren't resolving automatically on windows. This has been fixed by specifying it in electron.vite.config.ts
68 lines
1.6 KiB
TypeScript
68 lines
1.6 KiB
TypeScript
// Copyright 2024, Command Line Inc.
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
import react from "@vitejs/plugin-react";
|
|
import { defineConfig } from "electron-vite";
|
|
import { viteStaticCopy } from "vite-plugin-static-copy";
|
|
import tsconfigPaths from "vite-tsconfig-paths";
|
|
import path from "path";
|
|
|
|
export default defineConfig({
|
|
main: {
|
|
root: ".",
|
|
build: {
|
|
rollupOptions: {
|
|
input: {
|
|
index: "emain/emain.ts",
|
|
},
|
|
},
|
|
outDir: "dist/main",
|
|
},
|
|
plugins: [tsconfigPaths()],
|
|
resolve: {
|
|
alias: {
|
|
"@": path.resolve(__dirname, "./frontend"),
|
|
},
|
|
}
|
|
},
|
|
preload: {
|
|
root: ".",
|
|
build: {
|
|
sourcemap: true,
|
|
rollupOptions: {
|
|
input: {
|
|
index: "emain/preload.ts",
|
|
},
|
|
output: {
|
|
format: "cjs",
|
|
},
|
|
},
|
|
outDir: "dist/preload",
|
|
},
|
|
plugins: [tsconfigPaths()],
|
|
},
|
|
renderer: {
|
|
root: ".",
|
|
build: {
|
|
target: "es6",
|
|
sourcemap: true,
|
|
outDir: "dist/frontend",
|
|
rollupOptions: {
|
|
input: {
|
|
index: "index.html",
|
|
},
|
|
},
|
|
},
|
|
server: {
|
|
open: false,
|
|
},
|
|
plugins: [
|
|
react({}),
|
|
tsconfigPaths(),
|
|
viteStaticCopy({
|
|
targets: [{ src: "node_modules/monaco-editor/min/vs/*", dest: "monaco" }],
|
|
}),
|
|
],
|
|
},
|
|
});
|