在构建过程中(通过vue ui gui使用vue-service-cli buid),显示了以下错误,但我找不到src/main.ts
的声明位置。 vue:2.5.21,vue-cli:3.2.1
ERROR Failed to compile with 1 errors1:58:38 PM
This relative module was not found:
* ./src/main.ts in multi ./src/main.ts
ERROR Build failed with errors.
main.ts
是在ClientApp中定义的
entry: { "main": "./ClientApp/main.ts" },
Vue(或Webpack)是否已硬接线以具有src
目录?
答案 0 :(得分:1)
尝试预先清除Webpack入口点:
// vue.config.js
module.exports = {
configureWebpack: config => {
config.entry('main')
.clear()
.add('./ClientApp/main.ts')
}
}