webpack
Posted dxh0535
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了webpack相关的知识,希望对你有一定的参考价值。
1.安装
webpack webpack-cli
2.命令行打包
webpack index.js -o output_test.js //webpack 要打包的文件名 -0 打包后的文件名
webpack --mode development index.js -o output_test.js
3.
const path = require(‘path‘) //引入node核心的路径库 module.exports={ mode:‘production‘, entry: path.join(__dirname, ‘./src/index.js‘), //__dirname当前文件所在目录
output:{ path: path.join(__dirname, ‘./dist‘), filename: ‘bundle.js‘ } }
以上是关于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(代码片段