加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
vue.config.js 1.27 KB
一键复制 编辑 原始数据 按行查看 历史
明天,你好 提交于 2024-02-03 23:03 . feat: 初始化项目
const { defineConfig } = require('@vue/cli-service')
const builderOptions = {
productName: "CubeRPA", // 项目名 这也是生成的exe文件的前缀名
appId: "info.1data.www", // 包名
copyright: "版权所有 (C) 壹沓科技(上海)有限公司", // 版权 信息
publish: [
{
provider: "generic", // 服务器提供商 也可以是GitHub等等
url: "http://127.0.0.1:3000", // 服务器地址
},
],
extraMetadata: {
name: "CubePlatform/StudioApp",
version: "7.0.0",
},
directories: {
// 输出文件夹
output: "dist/CubeRPA",
},
win: {
// 图标路径 windows系统中icon需要256*256的ico格式图片,更换应用图标亦在此处
icon: "public/icons/favicon.ico",
target: [
{
target: "dir",
arch: ["x64"],
},
],
},
electronDownload: {
mirror: "https://npmmirror.com/mirrors/electron/"
},
};
module.exports = defineConfig({
transpileDependencies: true,
pages:{
index: {
entry: "src/main.js",
template: "public/index.html",
filename:'index.html',
},
},
pluginOptions: {
electronBuilder: {
nodeIntegration: true,
mainProcessWatch: ["./main/"],
mainProcessFile: "./main/index.js",
builderOptions,
},
},
})
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化