How to avoid React loading twice with Webpack when developing

前端 未结 2 548
悲哀的现实
悲哀的现实 2020-12-02 06:43

Given the following directory structure:

my-project
|
|-- node_modules
    |
    |-- react
    |-- module-x
        |
        |--node_modules
            |
          


        
2条回答
  •  暗喜
    暗喜 (楼主)
    2020-12-02 07:24

    If you don’t want to (or can’t) modify the project configuration, there is a more straightforward solution: just npm link React itself back to your project:

    # link the component
    cd my-app
    npm link ../my-react-component
    
    # link its copy of React back to the app's React
    cd ../my-react-component
    npm link ../my-app/node_modules/react
    

提交回复
热议问题