Webpack 2: cannot resolve module

萝らか妹 提交于 2019-12-04 03:37:01

Edit: As others have noted, for Webpack 2, something like this works:

{
  resolve: {
    extensions: ['.js', '.jsx'],
    modules: ['node_modules', path.resolve(__dirname, 'core')]
  },
}

For Webpack 1, I have a setup that has this entry:

config.resolve = {
  // Allows us to include js and jsx files without specifying the extension
  extensions: ['', '.jsx', '.js'],

  root: [path.resolve('./core')]
};

from: http://moduscreate.com/webpack-2-tree-shaking-configuration/

In Webpack 2, resolvers from root, modulesDirectories, and fallback settings will merge into a single property – modules. Here is how we can resolve file and module locations in Webpack 2:

  resolve: {
    modules: [
      path.resolve('./client'),
      'node_modules'
    ]
  },

You can specify a number of directories in modules, but make sure not to forget node_modules or npm package dependencies will fail to load.


So in your case what was before:

resolve: {
  modulesDirectories: ['core']
}

now needs to be

resolve: {
  modules: ['core'] // also 'node_modules' 
}

Thanks to Christopher Davies I fixed the problem by adding:

resolveLoader: {
  root: path.join(__dirname, 'node_modules')
},
resolve: {
    root: ['./core']
}

I had to add resolveLoader line otherwise I was getting an error about babel-loader that could not be loaded.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!