1 Star 0 Fork 353

阿杰ing / tts-vue

forked from Loker / tts-vue 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
vite.config.ts 1.77 KB
一键复制 编辑 原始数据 按行查看 历史
Loker 提交于 2022-08-01 16:04 . 重构完成,未修复已知BUG
import { rmSync } from "fs";
import { join } from "path";
import { defineConfig, Plugin, UserConfig } from "vite";
import vue from "@vitejs/plugin-vue";
import electron from "vite-plugin-electron";
import pkg from "./package.json";
rmSync("dist", { recursive: true, force: true }); // v14.14.0
// https://vitejs.dev/config/
export default defineConfig({
resolve: {
// +++
alias: {
"@": join(__dirname, "./src"),
"@components": join(__dirname, "./src/components"),
}, // +++
},
plugins: [
vue(),
electron({
main: {
entry: "electron/main/index.ts",
vite: withDebug({
build: {
outDir: "dist/electron/main",
},
}),
},
preload: {
input: {
// You can configure multiple preload here
index: join(__dirname, "electron/preload/index.ts"),
},
vite: {
build: {
// For Debug
sourcemap: "inline",
outDir: "dist/electron/preload",
},
},
},
// Enables use of Node.js API in the Renderer-process
renderer: {},
}),
],
server: {
host: pkg.env.VITE_DEV_SERVER_HOST,
port: pkg.env.VITE_DEV_SERVER_PORT,
},
});
function withDebug(config: UserConfig): UserConfig {
if (process.env.VSCODE_DEBUG) {
if (!config.build) config.build = {};
config.build.sourcemap = true;
config.plugins = (config.plugins || []).concat({
name: "electron-vite-debug",
configResolved(config) {
const index = config.plugins.findIndex(
(p) => p.name === "electron-main-watcher"
);
// At present, Vite can only modify plugins in configResolved hook.
(config.plugins as Plugin[]).splice(index, 1);
},
});
}
return config;
}
TypeScript
1
https://gitee.com/lizhijie429/tts-vue.git
git@gitee.com:lizhijie429/tts-vue.git
lizhijie429
tts-vue
tts-vue
main

搜索帮助