I recently did a livestream where I messed around a bit with Redwood. The code can be found here: GitHub - AryanJ-NYC/redwood-with-sanity-example: An example of how to use Redwood.js with Sanity.
Unfortunately, I’m unable to build the web side successfully. Does anyone have an idea where I messed up?
The error I get is:
Command failed with exit code 1: yarn webpack --config ../node_modules/@redwoodjs/core/config/webpack.production.js
Invalid configuration object. Webpack has been initialised using a configuration object that does not match the API schema.
- configuration has an unknown property 'optimization'. These properties are valid:
object { amd?, bail?, cache?, context?, dependencies?, devServer?, devtool?, entry, externals?, loader?, module?, name?, node?, output?, parallelism?, performance?, plugins?, profile?, recordsInputPath?, recordsOutputPath?, 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: {
optimization: ...
}
})
]
error Command failed with exit code 1.
$ /Users/aryanjabbari/Documents/practice/movie-list/node_modules/.bin/webpack --config ../node_modules/@redwoodjs/core/config/webpack.production.js
info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command.
Steps to reproduce:
git clone https://github.com/AryanJ-NYC/redwood-with-sanity-example.git
yarn install
yarn rw build