【bug记录】Vue项目执行报错处理:You may need an appropriate loader to handle this file type.
You may need an appropriate loader to handle this file type.您可能需要适当的加载程序来处理此文件类型。查看后发现webpack配置中少了对less文件的解析,vux需要less-loader,在webpack打包中要把less配置解决方法:// 1、找到webpack.base.conf.js文件,删除最后的module.exports=
·
You may need an appropriate loader to handle this file type.您可能需要适当的加载程序来处理此文件类型。
查看后发现webpack配置中少了对less文件的解析,vux需要less-loader,在webpack打包中要把less配置
解决方法:
// 1、找到webpack.base.conf.js文件,删除最后的module.exports=xxx 并重新写入
const vuxLoader = require('vux-loader')
const webpackConfig = originalConfig // 赋值webpack配置
module.exports = vuxLoader.merge(webpackConfig, { plugins: ['vux-ui'] })
// 2、在webpack.base.conf.js文件extensions中加入less
extensions: ['.js', '.vue', '.json', '.less']
// 3、重新启动,就可以了
更多推荐
已为社区贡献1条内容
所有评论(0)