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

后端 未结 16 2262
无人共我
无人共我 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:18

    My case was rather embarrassing: I added a typescript binding for a JS library without adding the library itself.

    So if you do:

    npm install --save @types/lucene
    

    Don't forget to do:

    npm install --save lucene
    

    Kinda obvious, but I just totally forgot and that cost me quite some time.

    0 讨论(0)
  • 2020-12-01 12:20

    In my case I was using invalid templateUrl.By correcting it problem solved.

    @Component({
            selector: 'app-edit-feather-object',
            templateUrl: ''
        })
    
    0 讨论(0)
  • 2020-12-01 12:25

    In my situation, I did not have an export at the bottom of my webpack.config.js file. Simply adding

    export default Config;
    

    solved it.

    0 讨论(0)
  • 2020-12-01 12:26

    In my case, it is due to a case-sensitivity typo in import path. For example,

    Should be:

    import Dashboard from './Dashboard/dashboard';
    

    Instead of:

    import Dashboard from './Dashboard/Dashboard';
    
    0 讨论(0)
提交回复
热议问题