Webpack 4 から Webpack 5 への移行中にdevtool
、空の値を使用するとエラーが発生しました (プロダクション モードのみ)。
module.exports = {
devtool: isProd ? '' : 'source-map',
// entry: ...
// output: ...
// module: ...
}
コンソールのメッセージ:
ValidationError: Invalid configuration object. Webpack has been initialized using a configuration object that does not match the API schema.
- configuration.devtool should match pattern "^(inline-|hidden-|eval-)?(nosources-)?(cheap-(module-)?)?source-map$".
BREAKING CHANGE since webpack 5: The devtool option is more strict.
Please strictly follow the order of the keywords in the pattern.
プロダクション モードでソース マップを回避する方法はありますか? そこに何を入力しますか?