vue 项目找不到模块(Module not found)

问题描述

vue 项目打包的时候,本地正常,线上报错找不到模块

Module not found: Error: Can't resolve './layerTmpShape' in '...'

经排查模块的路径是对的,.vue 模块文件名称是 ‘LayerTmpShape’,但是文件里的 name 是 ‘layerTmpShape’。

解决办法

改成 import LayerTmpShape from './LayerTmpShape'

非常低级的错误……
以后起名字要规范点,大小写统一。

猜你喜欢

转载自blog.csdn.net/sansan_7957/article/details/81951911