Field 'browser' doesn't contain a valid alias configuration

后端 未结 16 2309
无人共我
无人共我 2020-12-01 11:54

I\'ve started using webpack2 (to be precise, v2.3.2) and after re-creating my config I keep running into an issue I can\'t seem to solve I get (sorry in advance

16条回答
  •  独厮守ぢ
    2020-12-01 12:14

    Turned out to be an issue with Webpack just not resolving an import - talk about horrible horrible error messages :(

    // Had to change
    import DoISuportIt from 'components/DoISuportIt';
    
    // To (notice the missing `./`)
    import DoISuportIt from './components/DoISuportIt';
    

提交回复
热议问题