Quantcast
Channel: Active questions tagged config - Stack Overflow
Viewing all articles
Browse latest Browse all 5054

Why [webpack-cli] Error: Unknown option '--display-error-details' [webpack-cli] Run 'webpack --help' to see available commands and options?

$
0
0

I'm havin the error [webpack-cli] Error: Unknown option '--display-error-details'[webpack-cli] Run 'webpack --help' to see available commands and options

Even though at the webpack.config flie having -

const path = require('path');const PATHS = {    app: path.resolve(__dirname,'app'),    build: path.resolve(__dirname,'build')};module.exports = {  stats: {    errorDetails: true,    children: true },   entry: {     app: PATHS.app +"/index.js"   },   output: {      path: PATHS.build,      filename: 'bundle.js',   },   resolve: {      alias: {'vue': 'vue/dist/vue.common.js'      }   },};

with errorDetail: true


Viewing all articles
Browse latest Browse all 5054

Trending Articles