webpack的使用
Posted ghfjj
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了webpack的使用相关的知识,希望对你有一定的参考价值。
1.将js文件转换
webpack app/main.js public/webpack.js //将app文件家里的main.js 转换成public文件夹下的webpack.js
ps:webpack集成了require.js
此操作可以用对应的webpack.config.js配置来代替:
在项目目录下在建立一个webpack.config.js文件,
然后在运行命令:‘webpack‘,即可在public目录下生成webpack.js文件
还有一种方法,在package.json里配置
ps:其实npm test
和npm start
是npm run test
和npm run start
的简写。事实上,你可以使用npm run
来运行scripts
里的任何条目。
以上是关于webpack的使用的主要内容,如果未能解决你的问题,请参考以下文章
Vue报错:Uncaught TypeError: Cannot assign to read only property 'exports' of object 的解决方法(代码片段
报错:✘ http://eslint.org/docs/rules/indent Expected indentation of 0 s paces but found 2(代码片段
报错:✘ http://eslint.org/docs/rules/indent Expected indentation of 0 s paces but found 2(代码片段