标签: indexing webpack resolve
如何使webpack识别自定义index.js文件?
例如,从文件夹导入时,我希望webpack用index.js覆盖index.ios.js。
index.js
index.ios.js
import thing from './thing'
我尝试了以下配置,但不起作用。 。
{ resolve: { extensions: [ '.ios.js', '.js' ] } }