问答详情
源自:2-1 建立项目的 webpack 配置文件

请问这是什么意思,和老师写的一样但是报错

No configuration file found and no output filename configured via CLI option.

A configuration file could be named 'webpack.config.js' in the current directory.

Use --help to display the CLI options.



//commonjs的模块化

module.exports = {

//打包的入口文件路径

entry: './src/script/main.js',

//输出文件的路径

output: {

//输出文件的路径

path: './dist/js',

//输出文件的名字

filename: 'bundle.js'

}

}


提问者:webFE 2018-02-03 13:30

个回答

  • 慕粉4248338
    2018-02-04 16:47:57

    文件名是  webpack.config.js  看看是不是写错了,还有这个文件要放在package.json 文件夹