最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - webpack 2 cannot resolve empty extensions - Stack Overflow

programmeradmin0浏览0评论

So in webpack 2 when requiring/import a file import file from './file';

I got the following message:

You may need an appropriate loader to handle this file type.

This is because when requiring a file in [email protected] I used to have:

resolve: { extensions: ['', '.js'] ...

But it seems this is no longer accepted in webpack@2

Invalid configuration object. Webpack has been initialised using a configuration object that does not match the API schema. - configuration.resolve.extensions[0] should not be empty.

I have read migrating guide but I couldn't find it.

My loaders are as simple as that:

module: {
  rules: [
    {
      test: /\.js$/,
      exclude: /node_modules/,
      use: 'babel-loader'
    }
  ]
}

How do I fix it?

Thanks

So in webpack 2 when requiring/import a file import file from './file';

I got the following message:

You may need an appropriate loader to handle this file type.

This is because when requiring a file in [email protected] I used to have:

resolve: { extensions: ['', '.js'] ...

But it seems this is no longer accepted in webpack@2

Invalid configuration object. Webpack has been initialised using a configuration object that does not match the API schema. - configuration.resolve.extensions[0] should not be empty.

I have read migrating guide but I couldn't find it.

My loaders are as simple as that:

module: {
  rules: [
    {
      test: /\.js$/,
      exclude: /node_modules/,
      use: 'babel-loader'
    }
  ]
}

How do I fix it?

Thanks

Share Improve this question edited Feb 6, 2017 at 15:09 locropulenton asked Feb 6, 2017 at 13:25 locropulentonlocropulenton 4,8433 gold badges34 silver badges58 bronze badges 2
  • what do you have as your loaders? might help if you put the config file up. – Davi DeBarros Commented Feb 6, 2017 at 13:57
  • yeah, please refer your config file so we can see what the problem is – ickyrr Commented Feb 10, 2017 at 7:58
Add a ment  | 

2 Answers 2

Reset to default 8

In a newer Webpack Version you can't use an empty string. It says:

Getting error: configuration.resolve.extensions[0] should not be empty.

You have to use extensions: ['.js'] or extensions: ['*', '.js'].

Issue: https://github./webpack/webpack/issues/3043

this has been modified now in webpack2

now you have to provide only

resolve: {extensions: ['.js', '.ts','jsx','tsx']}

based upon the code syntax you choose

and if you provide '' in the array it throws an error

configuration.resolve.extensions[0] should not be empty

you can also provide ['*'] if you want to match all files.

发布评论

评论列表(0)

  1. 暂无评论