我正在使用Vue,Typescript和Electron构建一个小型应用程序。我使用Vue CLI启动该项目,并安装了electronic builder插件。一切正常。
但是,我希望我的电子应用程序具有特定的文件结构,因此我移动了文件并调整了配置以获得所需的文件。一旦构建完成,无论是在Electron还是在网络上,Vue应用都不会出现。当我检查页面时,除了基本index.html
之外,什么都没有。在终端或开发工具中,我没有任何错误。
这是我的vue.config.js
const path = require('path')
module.exports = {
pages: {
app: {
entry: './src/renderer/index.ts'
}
},
pluginOptions: {
electronBuilder: {
mainProcessFile: 'src/main/index.ts'
}
},
configureWebpack: config => {
// console.log(config.entry)
// console.log(config.resolve.alias)
config.resolve = {
...config.resolve,
alias: {
...config.resolve.alias,
'@': (path.resolve(__dirname, 'src/renderer'))
}
}
// console.log(config.resolve)
}
}
要使我的Vue应用程序构建/显示,我需要做什么?