electron-vite 安装, 打包下载资源失败,设置国内镜像 由于electron默认打包会从github上下载相关二进制包,众所周知,国内GitHub访问是相当慢的,所以经常会出现下载失败导致打包不成功,这时我们就需要配置国内的镜像源,以解决从GitHub下载慢甚至无法下载的问题。 修改npm配置文件(没有就创建): npm的配置文件为用户根目录下...
cnpm i 打包exe npm run build:win build完后在项目跟目录的dist文件夹下会打包生成很多文件 其中有一个.exe就是用来安装windows应用程序,在资源管理器双击打开安装 会有窗口一闪而过,然后就是开始安装。没有选择安装位置选项。 electron项目使用electron-builder打包的,只需要改electron-builder的配置就行了 在项目根...
4. 配置electron (1) 安装vite-plugin-electron,vite-plugin-electron-renderer (2) 配置vite.config.js,将主进程设置为./electron/main/index.js (3) 在electron/index.js下配置窗口基本信息 注意:静态页面index.html,因为index页面是我们加载main.js,配置全局引用的地方,所以在打包的时候需要把index.html进行保留...
1. 安装Node.js 确保你的电脑上已经安装了Node.js,因为electron-vite是基于Node.js环境的。你可以在Node.js的冠方全球信息站上下载安装包,然后按照提示进行安装。 2. 安装electron-vite 在安装了Node.js之后,你可以使用npm来安装electron-vite。打开命令行工具,运行以下命令: ```bash npm install -g electron-...
npm config set ELECTRON_MIRROR=http://npm.taobao.org/mirrors/electron/ npm install cvep -g cvep库地址,这就是个写好的模板,拉下来,安装就ok了 https://github.com/wwog/cvep cvep cvep my-electron-cvep 进到项目里面 npm install ...
安装electron 在安装 electron之前需要先配置一下 安装源 在根目录下新建一个.npmrc文件 strict-ssl=false registry=https://registry.npmmirror.com/ electron_mirror=https://registry.npmmirror.com/-/binary/electron/ electron_builder_binaries_mirror=https://registry.npmmirror.com/-/binary/electron-builder-...
1.安装nvm 链接: https://pan.baidu.com/s/1gPLPxtSahQnMQDHs__5UKQ 提取码: ABC1 安装成功后使用nvm -v查看版本,有版本号就ok 终端输入nvm install +node版本就可直接下载 nvm ls可查看下载的版本 node -v npm-v 检查是否安装成功 二.安装vscode ...
工程下载好后,我们打开工程,并在根目录打开终端,然后安装对应的依赖 1.配置镜像 # 指定 npm 国内镜像 npm config set registry=https://registry.npm.taobao.org/ # 指定 Electron 的国内镜像地址 npm config set ELECTRON_MIRROR=https://npm.taobao.org/mirrors/electron/ ...
首先安装electron至vite应用。目前electron的版本为^15.1.2,。 yarn add --dev electron 3.配置文件 1)vite.config.js import{defineConfig}from'vite'importvuefrom'@vitejs/plugin-vue'importpathfrom'path'// 新增// https://vitejs.dev/config/exportdefaultdefineConfig({base:path.resolve(__dirname,'./...
既然element-plus我们已经配置好了按需引入,那么图标咱们也走按需引入,让打出的包尽可能的小。官网图标配置1.安装依赖npm install @element-plus/icons-vuenpm i -D unplugin-icons2.配置自动导入然后我们参考element提供的配置模板调整vite.config.ts// ...import Ic这是我的一个技术博客网站,主要目地是为了方便...