Invalid configuration object. Webpack has been initialised using a configuration object that does not match the API schema

ReactjsTypescriptWebpack

Reactjs Problem Overview


I have this simple helloworld react app created from an online course, however I get this error:

> Invalid configuration object. Webpack has been initialised using a > configuration object that does not match the API schema. > - configuration has an unknown property 'postcss'. These properties are valid: object { amd?, bail?, cache?, context?, dependencies?, > devServer?, devtool?, entry, externals?, loader?, module?, name?, > node?, output?, performance?, plugins?, profile?, recordsInputPath?, > recordsO utputPath?, recordsPath?, resolve?, resolveLoader?, stats?, > target?, watch?, watchOptions? } For typos: please correct them.
> For loader options: webpack 2 no longer allows custom properties in > configuration. > Loaders should be updated to allow passing options via loader options in module.rules. > Until loaders are updated one can use the LoaderOptionsPlugin to pass these options to the loader: > plugins: [ > new webpack.LoaderOptionsPlugin({ > // test: /.xxx$/, // may apply this only for some modules > options: { > postcss: ... > } > }) > ] > - configuration.resolve has an unknown property 'root'. These properties are valid: object { alias?, aliasFields?, > cachePredicate?, descriptionFiles?, enforceExtension?, > enforceModuleExtension?, extensions?, fileSystem?, mainFields?, > mainFiles?, moduleExtensions?, modules?, plugins ?, resolver?, > symlinks?, unsafeCache?, useSyncFileSystemCalls? } > - configuration.resolve.extensions[0] should not be empty.

My webpack file is:

// work with all paths in a cross-platform manner
const path = require('path');

// plugins covered below
const { ProvidePlugin } = require('webpack');
const CopyWebpackPlugin = require('copy-webpack-plugin');
const HtmlWebpackPlugin = require('html-webpack-plugin');

// configure source and distribution folder paths
const srcFolder = 'src';
const distFolder = 'dist';

// merge the common configuration with the environment specific configuration
module.exports = {

    // entry point for application
    entry: {
        'app': path.join(__dirname, srcFolder, 'ts', 'app.tsx')
    },

    // allows us to require modules using
    // import { someExport } from './my-module';
    // instead of
    // import { someExport } from './my-module.ts';
    // with the extensions in the list, the extension can be omitted from the 
    // import from path
    resolve: {
        // order matters, resolves left to right
        extensions: ['', '.js', '.ts', '.tsx', '.json'],
        // root is an absolute path to the folder containing our application 
        // modules
        root: path.join(__dirname, srcFolder, 'ts')
    },

    module: {
        loaders: [
            // process all TypeScript files (ts and tsx) through the TypeScript 
            // preprocessor
            { test: /\.tsx?$/,loader: 'ts-loader' },
            // processes JSON files, useful for config files and mock data
            { test: /\.json$/, loader: 'json' },
            // transpiles global SCSS stylesheets
            // loader order is executed right to left
            {
                test: /\.scss$/,
                exclude: [path.join(__dirname, srcFolder, 'ts')],
                loaders: ['style', 'css', 'postcss', 'sass']
            },
            // process Bootstrap SCSS files
            {
                test: /\.scss$/,
                exclude: [path.join(__dirname, srcFolder, 'scss')],
                loaders: ['raw', 'sass']
            }
        ]
    },

    // configuration for the postcss loader which modifies CSS after
    // processing
    // autoprefixer plugin for postcss adds vendor specific prefixing for
    // non-standard or experimental css properties
    postcss: [ require('autoprefixer') ],

    plugins: [
        // provides Promise and fetch API for browsers which do not support
        // them
        new ProvidePlugin({
            'Promise': 'es6-promise',
            'fetch': 'imports?this=>global!exports?global.fetch!whatwg-fetch'
        }),
        // copies image files directly when they are changed
        new CopyWebpackPlugin([{
            from: path.join(srcFolder, 'images'),
            to: path.join('..', 'images')
        }]),
        // copies the index.html file, and injects a reference to the output JS 
        // file, app.js
        new HtmlWebpackPlugin({
            template: path.join(__dirname, srcFolder, 'index.html'),
            filename:  path.join('..', 'index.html'),
            inject: 'body',
        })
    ],

    // output file settings
    // path points to web server content folder where the web server will serve 
    // the files from file name is the name of the files, where [name] is the 
    // name of each entry point	
    output: {
        path: path.join(__dirname, distFolder, 'js'),
        filename: '[name].js',
        publicPath: '/js'
    },

    // use full source maps
    // this specific setting value is required to set breakpoints in they
    // TypeScript source in the web browser for development other source map
    devtool: 'source-map',

    // use the webpack dev server to serve up the web application
    devServer: {
        // files are served from this folder
        contentBase: 'dist',
        // support HTML5 History API for react router
        historyApiFallback: true,
        // listen to port 5000, change this to another port if another server 
        // is already listening on this port
        port: 5000,
        // proxy requests to the JSON server REST service
        proxy: {
            '/widgets': {
                // server to proxy
                target: 'http://0.0.0.0:3010'
            }
        }
    }

};

Reactjs Solutions


Solution 1 - Reactjs

Just change from "loaders" to "rules" in "webpack.config.js"

Because loaders is used in Webpack 1, and rules in Webpack2. You can see there have differences.

Solution 2 - Reactjs

I solved this issue by removing empty string from my resolve array. Check out resolve documentation on webpack's site.

//Doesn't work
module.exports = {
  resolve: {
    extensions: ['', '.js', '.jsx']
  }
  ...
}; 

//Works!
module.exports = {
  resolve: {
    extensions: ['.js', '.jsx']
  }
  ...
};

Solution 3 - Reactjs

I don't exactly know what causes that, but I solve it this way.
Reinstall whole project but remember that webpack-dev-server must be globally installed.
I walk through some server errors like webpack cant be found, so I linked Webpack using link command.
In output Resolving some absolute path issues.

In devServer object: inline: false

webpack.config.js

module.exports = {
    entry: "./src/js/main.js",
    output: {
        path:__dirname+ '/dist/',
        filename: "bundle.js",
        publicPath: '/'
    },
    devServer: {
        inline: false,
        contentBase: "./dist",
    },
    module: {
        loaders: [
            {
                test: /\.jsx?$/,
                exclude:/(node_modules|bower_components)/,
                loader: 'babel-loader',
                query: {
                    presets: ['es2015', 'react']
                }
            }
        ]
    }

};

package.json

{
  "name": "react-flux-architecture-es6",
  "version": "1.0.0",
  "description": "egghead",
  "main": "index.js",
  "scripts": {
    "start": "webpack-dev-server"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/cichy/react-flux-architecture-es6.git"
  },
  "keywords": [
    "React",
    "flux"
  ],
  "author": "Jarosław Cichoń",
  "license": "ISC",
  "bugs": {
    "url": "https://github.com/cichy/react-flux-architecture-es6/issues"
  },
  "homepage": "https://github.com/cichy/react-flux-architecture-es6#readme",
  "dependencies": {
    "flux": "^3.1.2",
    "react": "^15.4.2",
    "react-dom": "^15.4.2",
    "react-router": "^3.0.2"
  },
  "devDependencies": {
    "babel-core": "^6.22.1",
    "babel-loader": "^6.2.10",
    "babel-preset-es2015": "^6.22.0",
    "babel-preset-react": "^6.22.0"
  }
}

Solution 4 - Reactjs

Try the below steps:

npm uninstall webpack --save-dev

followed by

npm install webpack@2.1.0-beta.22 --save-dev

Then you should be able to gulp again. Fixed the issue for me.

Solution 5 - Reactjs

Webpack's configuration file has changed over the years (likely with each major release). The answer to the question:

Why do I get this error

Invalid configuration object. Webpack has been initialised using a 
configuration object that does not match the API schema

is because the configuration file doesn't match the version of webpack being used.

The accepted answer doesn't state this and other answers allude to this but don't state it clearly npm install [email protected], Just change from "loaders" to "rules" in "webpack.config.js", and this. So I decide to provide my answer to this question.

Uninstalling and re-installing webpack, or using the global version of webpack will not fix this problem. Using the correct version of webpack for the configuration file being used is what is important.

If this problem was fixed when using a global version it likely means that your global version was "old" and the webpack.config.js file format your using is "old" so they match and viola things now work. I'm all for things working, but want readers to know why they worked.

Whenever you get a webpack configuration that you hope is going to solve your problem ... ask yourself what version of webpack the configuration is for.

There are a lot of good resources for learning webpack. Some are:

There are a lot more good resources for learning webpack4 by example, please add comments if you know of others. Hopefully, future webpack articles will state the versions being used/explained.

Solution 6 - Reactjs

I guess your webpack version is 2.2.1. I think you should be using this Migration Guide --> https://webpack.js.org/guides/migrating/

Also, You can use this example of TypeSCript + Webpack 2.

Solution 7 - Reactjs

For the people like myself, who started recently: The loaders keyword is replaced with rules; even though it still represents the concept of loaders. So my webpack.config.js, for a React app, is as follows:

var webpack = require('webpack');
var path = require('path');

var BUILD_DIR = path.resolve(__dirname, 'src/client/public');
var APP_DIR = path.resolve(__dirname, 'src/client/app');

var config = {
  entry: APP_DIR + '/index.jsx',
  output: {
    path: BUILD_DIR,
    filename: 'bundle.js'
  },
  module : {
    rules : [
      {
        test : /\.jsx?/,
        include : APP_DIR,
        loader : 'babel-loader'
      }
    ]
  }
};

module.exports = config;
                 

Solution 8 - Reactjs

This error usually happens when you have conflicting version (angular js). So the webpack could not start the application. You can simply fix it by removing the webpack and reinstall it.

npm uninstall webpack --save-dev
npm install webpack --save-dev

The restart your application and everything is fine.

I hope am able to help someone. Cheers

Solution 9 - Reactjs

It work's using rules instead of loaders

module : {
  rules : [
    {
      test : /\.jsx?/,
      include : APP_DIR,
      loader : 'babel-loader'
    }
  ]
}

Solution 10 - Reactjs

In webpack.config.js replace loaders: [..] with rules: [..] It worked for me.

Solution 11 - Reactjs

I had the same issue and I solved it by installing latest npm version:

npm install -g npm@latest

and then change the webpack.config.js file to solve

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

now resolve extension should look like:

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

then run npm start.

Solution 12 - Reactjs

Installing "webpack": "^5.41.1" with npm i -S webpack@latest will fix this issue.

Solution 13 - Reactjs

I got the same error message when introducing webpack to a project I created with npm init.

`Invalid configuration object. Webpack has been initialised using a configuration object that does not match the API schema.

  • configuration.output.path: The provided value "dist/assets" is not an absolute path!`

I started over using yarn which fixed the problem for me:

brew update
brew install yarn
brew upgrade yarn
yarn init
yarn add webpack webpack-dev-server path
touch webpack.config.js
yarn add babel-loader babel-core babel-preset-es2015 babel-preset-react --dev
yarn add html-webpack-plugin
yarn start

I found the following link helpful: Setup a React Environment Using webpack and Babel

Solution 14 - Reactjs

I changed loaders to rules in the webpack.config.js file and updated the packages html-webpack-plugin, webpack, webpack-cli, webpack-dev-server to the latest version then it worked for me!

Solution 15 - Reactjs

I had the same issue and I resolved this by making some changes in my web.config.js file. FYI I am using the latest version of webpack and webpack-cli. This trick just saved my day. I have attached the example of mine web.config.js file before and after version.

Before:

module.exports = {
    resolve: {
        extensions: ['.js', '.jsx']
    },
    entry: './index.js',
    output: {
         filename: 'bundle.js'
    },
    module: {
        loaders : [
           { test: /\.js?/, loader: 'bable-loader', exclude: /node_modules/ }
        ]
    }
}

After: I Just replaced loaders to rules in module object as you can see in my code snippet.

module.exports = {
    resolve: {
        extensions: ['.js', '.jsx']
    },
    entry: './index.js',
    output: {
        filename: 'bundle.js'
    },
    module: {
        rules : [
            { test: /\.js?/, loader: 'bable-loader', exclude: /node_modules/ }
        ]
    }
}

Hopefully, This will help someone to get rid out of this issue.

Solution 16 - Reactjs

This error occurs me when I use path.resolve(), to set up 'entry' and 'output' settings. entry: path.resolve(__dirname + '/app.jsx'). Just try entry: __dirname + '/app.jsx'

Solution 17 - Reactjs

In my case the problem was the name of the folder where the project was contained, which had the sign "!" All I did was rename the folder and everything was ready.

Solution 18 - Reactjs

I had the same problem, and in my case, all I had to do was the good ol' > read the error message...

My error message said: > Invalid configuration object. Webpack has been initialised using a configuration object that does not match the API schema.

  • configuration.entry should be one of these: function | object { : non-empty string | [non-empty string] } | non-empty string | [non-empty string] -> The entry point(s) of the compilation. Details:
    • configuration.entry should be an instance of function -> A Function returning an entry object, an entry string, an entry array or a promise to these things.
    • configuration.entry['styles'] should be a string. -> The string is resolved to a module which is loaded upon startup.
    • configuration.entry['styles'] should not contain the item 'C:\MojiFajlovi\Faks\11Master\1Semestar\UDD-UpravljanjeDigitalnimDokumentima\Projekat
      nc-front\node_modules\bootstrap\dist\css\bootstrap.min.css' twice.

As the bold-ed error message line said, I just opened angular.json file and found the styles to look like this:

"styles": [
      "./node_modules/bootstrap/dist/css/bootstrap.min.css",
      "src/styles.css",
      "node_modules/bootstrap/dist/css/bootstrap.min.css" <-- **marked line**
    ],

... so I just removed the marked line...

and it all went well. :)

Solution 19 - Reactjs

Using different syntax (flags ...), can cause this problem from version to another in webpack (3,4,5...), you have to read new webpack configuration updated and deprecated features.

Solution 20 - Reactjs

For me I had to change:

cheap-module-eval-source-map

to:

eval-cheap-module-source-map

A v4 to v5 nuance.

Solution 21 - Reactjs

Check your source_path in webpacker.yml. I had the same error on a project where webpacker.yml was copied from another project. It should point to the directory that contains your packs directory.

Solution 22 - Reactjs

In my case it was caused by copying the webpack.js from another project and not changing the 'entry' and 'output' paths to match the new project structure. Once I'd fixed the paths everything worked again.

Solution 23 - Reactjs

I have the same error than you.

> npm uninstall webpack --save-dev

& > npm install [email protected] --save-dev

solve it!.

Solution 24 - Reactjs

I had webpack version 3 so I installed webpack-dev-server version 2.11.5 according to current https://www.npmjs.com/package/webpack-dev-server "Versions" page. And then the problem was gone.

enter image description here

Solution 25 - Reactjs

A somewhat unlikely situation.

I have removed the yarn.lock file, which referenced an older version of webpack.

So check to see the differences in your yarn.lock file as a possiblity.

Solution 26 - Reactjs

If you are coming from the single SPA world, and you encounter this error. I realized the issue is caused by the scripts to serve the application.

An example is this:

"scripts": {
    "start": "ng serve",
    "serve:single-spa:play": "ng s --project play --disable-host-check --port 4202 --deploy-url http://localhost:4202/ --live-reload false"
  },

To make this work, change the start script to the one below:

"scripts": {
    "start": "npm run serve:single-spa:play",
    "serve:single-spa:play": "ng s --project play --disable-host-check --port 4202 --deploy-url http://localhost:4202/ --live-reload false"
  },

Solution 27 - Reactjs

Try this piece, the thing is, rules must be a list or array whatever...

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

Solution 28 - Reactjs

If you encounter this error after migrating angular version from 11 to 12 and using single spa,

then you can configure "package.json" for the below packages

"single-spa": "^5.9.3"

"single-spa-angular": "^5.0.2"

"@angular-builders/custom-webpack": "^12.1.3"

"webpack": "^5.70.0"

after npm install

Solution 29 - Reactjs

I ran into this problem while trying to use WebPack5 with Cypress and Cucumber (based off of this example https://github.com/TheBrainFamily/cypress-cucumber-webpack-typescript-example). Changing plugin\index.js to this worked for me!

const browserify = require('@cypress/browserify-preprocessor');
const cucumber = require('cypress-cucumber-preprocessor').default;

module.exports = (on, config) => {
  const options = {
    ...browserify.defaultOptions,
    typescript: require.resolve('typescript'),
  };

  on('file:preprocessor', cucumber(options));
  on('task', {
    log(message) {
      console.log(message)

      return null
    },
  })
};

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionLuis ValenciaView Question on Stackoverflow
Solution 1 - ReactjsIvo AmaralView Answer on Stackoverflow
Solution 2 - ReactjsJames L.View Answer on Stackoverflow
Solution 3 - ReactjsJarosław CichońView Answer on Stackoverflow
Solution 4 - ReactjsRushitView Answer on Stackoverflow
Solution 5 - ReactjsPatSView Answer on Stackoverflow
Solution 6 - ReactjsJosé Quinto ZamoraView Answer on Stackoverflow
Solution 7 - Reactjso-0View Answer on Stackoverflow
Solution 8 - ReactjsJohn AdesholaView Answer on Stackoverflow
Solution 9 - Reactjsh.aittamaaView Answer on Stackoverflow
Solution 10 - Reactjskarthik padavView Answer on Stackoverflow
Solution 11 - ReactjsNga_developerView Answer on Stackoverflow
Solution 12 - ReactjsBUND-XView Answer on Stackoverflow
Solution 13 - ReactjsshawfireView Answer on Stackoverflow
Solution 14 - ReactjsJeff PalView Answer on Stackoverflow
Solution 15 - ReactjskamalView Answer on Stackoverflow
Solution 16 - ReactjsRobertView Answer on Stackoverflow
Solution 17 - ReactjsLuis CiberView Answer on Stackoverflow
Solution 18 - ReactjsFilip SavicView Answer on Stackoverflow
Solution 19 - ReactjsSeif TmlView Answer on Stackoverflow
Solution 20 - ReactjsJGFMKView Answer on Stackoverflow
Solution 21 - ReactjsIAmNaNView Answer on Stackoverflow
Solution 22 - ReactjsMartlarkView Answer on Stackoverflow
Solution 23 - ReactjsLluís Puig FerrerView Answer on Stackoverflow
Solution 24 - ReactjskangkyuView Answer on Stackoverflow
Solution 25 - ReactjsJamie HutberView Answer on Stackoverflow
Solution 26 - Reactjsjames aceView Answer on Stackoverflow
Solution 27 - ReactjsRafaelView Answer on Stackoverflow
Solution 28 - ReactjsYuvarajView Answer on Stackoverflow
Solution 29 - ReactjsLouis CribbinsView Answer on Stackoverflow