poetl

[已解决]This dependency was not found: * common/stylus/index.styl in ./src/main.js To install it, you can run: npm install --save common/stylus/index.styl

出现

This dependency was not found:

* common/stylus/index.styl in ./src/main.js

To install it, you can run: npm install --save common/stylus/index.styl

 

的解决办法是 在 

  build\webpack.base.conf.js

将 resolve添加

'common': resolve('src/common')


resolve: {
extensions: ['.js', '.vue', '.json'],
alias: {
'vue$': 'vue/dist/vue.esm.js',
'@': resolve('src'),
'common': resolve('src/common')
}
},
发表于 2018-01-10 23:03 poetL 阅读(...) 评论(...) 编辑 收藏
 

分类:

技术点:

vue.js

相关文章:

  • 2021-05-14
  • 2021-08-18
  • 2022-12-23
  • 2022-12-23
  • 2021-10-08
  • 2021-07-22
猜你喜欢
  • 2022-12-23
  • 2021-08-26
  • 2021-08-07
  • 2022-01-17
  • 2022-12-23
  • 2022-12-23
  • 2021-08-08
相关资源
相似解决方案