我使用 vue create 创建了新的 vue 项目,并根据以下教程添加了离子和电容器vue 离子电容器教程
yarn add @capacitor/core @capacitor/cli
yarn cap init
yarn cap add android/ios and electron
update capacitor.config.json as follow
{
"appId": "xxxx.xxx.xxxx.vuecapacitordemo2",
"appName": "vuecapacitordemo2",
"bundledWebRuntime": true,
"npmClient": "yarn",
"webDir": "dist"
}
我在运行 electron 时遇到问题, yarn run electron:start ,我得到 net::ERR_FILE_NOT_FOUND 。谷歌搜索找到的答案有几个答案都导致添加 带有以下内容的link_1 link_2 link_3 vue.config.js 文件。publicPath 具有不同的值
module.exports={
publicPath: '/',
runtimeCompiler: true
}
这会导致应用程序无法继续超出初始屏幕。任何提示/想法如何解决这个问题?
提前致谢