输入webpack回车报错,显示配置文件错误

来源:1-2 Webpack 安装和命令行

碼農五花肉丶

2017-05-25 22:33

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.



何解??

写回答 关注

1回答

  • secert花花
    2017-05-26 10:15:14

    你配置的里面写的路径名有问题,而且默认的webpack配置文件名是webpack.config.js,你有webpack.config.js文件吗?你试试这样写呢

    module.exports = {
    	entry:'./src/script/main.js',
    	output:{
    		path: __dirname + '/dist/js',
    		filename:'bundle.js'
    	}
    }


    碼農五花肉丶

    后来看笔记知道了,像视频里那样直接输入webpack 回车 win系统就会报错,必须在后面加-g。 还有“css=”必须用双引号

    2017-05-27 09:21:49

    共 1 条回复 >

webpack深入与实战

webpack实战教程,用真实项目带你探索 webpack 强大的功能

86561 学习 · 721 问题

查看课程

相似问题