/* webpack.config.js中的内容如下 */ module.exports = { entry:‘./src/script/main.js‘, output:{ path:‘./dist/js‘, filename:‘bundle.js‘ } }
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <title>webpack demo</title> <link rel="stylesheet" href=""> </head> <body> <script type="text/javascript" src="bundle.js"></script> </body> </html>
function helloWorld(){}
{ "name": "webpack-demo", "version": "1.0.0", "description": "", "main": "index.js", "scripts": { "test": "echo \"Error: no test specified\" && exit 1", "webpack":"webpack --config webpack.config.js --progress --display-modules --colors --display-reasons" }, "author": "", "license": "ISC", "devDependencies": { "css-loader": "^0.26.1", "style-loader": "^0.13.1", "webpack": "^2.2.1" } }
cnpm run webpack
本文出自 “素颜” 博客,请务必保留此出处http://suyanzhu.blog.51cto.com/8050189/1899482
原文:http://suyanzhu.blog.51cto.com/8050189/1899482