为什么用 webpack 和 babel
- ES6 模块化,浏览器暂不支持
- ES6 语法,浏览器并不完全支持
- 压缩代码,整合代码,让网页加载更快
初始化
1 | npm init -y |
安装webpack
1 | npm install webpack webpack-cli -D |
安装完的package.json
1 | { |
安装插件 html-webpack-plugin,解析html
1 | npm install html-webpack-plugin -D |
安装插件 webpack-dev-server,解析html
1 | npm install webpack-dev-server -D |
webpack.config.js 添加 html-webpack-plugin
1 | const path = require('path'); |
ES6 转化成 ES5,安装 babel
1 | npm install @babel/core @babel/preset-env babel-loader -D |
此时的package.json
1 | "devDependencies": { |
配置babel
创建 .babelrc 文件
1 | { |
对生产环境单独做配置
- 创建文件 webpack.prod.js;
- 修改 ’mode‘ 为 ‘production’ ,打包出来的文件就会压缩成一行,体积减小,加载速度快
- output 优化,添加 ’[contenthash]‘,文件改动就重新生成文件名,防止读取缓存
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27const path = require('path');
const HtmlWebpackPlugin = require('html-webpack-plugin');
module.exports = {
mode: 'production', // 开发模式 development / production
entry: path.join(__dirname, 'src', 'index.js'),
output: {
filename: 'bundle.[contenthash].js',
path: path.join(__dirname, 'dist')
},
module: {
rules: [
{
test: /\.js$/,
loader: ['babel-loader'],
include: path.join(__dirname, 'src'),
exclude: /node_modules/
}
]
},
plugins: [
new HtmlWebpackPlugin({
template: path.join(__dirname, 'src', 'index.html'), // 模板文件,指定已有的html文件
filename: 'index.html' // 产出文件
})
]
};
Related Issues not found
Please contact @magicyou to initialize the comment