There are multiple modules with names that only differ in casing.
有多個模塊同名僅大小寫不同
This can lead to unexpected behavior when compiling on a filesystem with other case-semantic.
這可能導致在一些文件系統中產生不是預期的行為
Use equal casing.
使用唯一的寫法
提示原因:
import Pagination from '../../../components/Pagination/Pagination'
Pagination在項目的文件名是小寫的,這里引用的時候變大寫了,正確寫法如下:
import Pagination from '../../../components/pagination/pagination' , 這樣寫 就不會報warning提示了。