未指定文件的vue-service-cli构建错误

时间:2018-12-22 20:13:40

标签: vue.js vue-cli

在构建过程中(通过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.

web.config.js

main.ts是在ClientApp中定义的

       entry: { "main": "./ClientApp/main.ts" },

Vue(或Webpack)是否已硬接线以具有src目录?

1 个答案:

答案 0 :(得分:1)

尝试预先清除Webpack入口点:

// vue.config.js
module.exports = {
  configureWebpack: config => {
    config.entry('main')
          .clear()
          .add('./ClientApp/main.ts')
  }
}