第一步
执行npm init 命令 初始化出package.json文件
{
"name": "demo1",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC"
}
第二部
执行 yarn add webpack webpack-cli --save-dev 或者执行 cnpm/npm install webpack webpack-cli --save-dev
其中第一个表示安装webpack打包工具
第二个表示安装webpack脚手架 安装了脚手架才能使用wepback命令
第三部配置构建脚本 如下面的build脚本
"scripts": {
"build": "webpack",
"test": "echo \"Error: no test specified\" && exit 1"
}
配置完成后可以运行npm run build 命令执行项目构建
这时会报错 can not resolve ./src
这是因为找不到项目的入口文件
解决完成后再次执行npm run build 命令发现项目中多出一个dist文件夹
dist文件夹中有一个压缩过后的js文件 main.js 在该文件中可以找到在src文件夹下的index.js的代码
此时表示能够成功打包项目但是终端会提示未设置mode的警告
"scripts": {
"build": "webpack --mode production",
"dev": "webpack --mode development",
"test": "echo \"Error: no test specified\" && exit 1"
},
第四步
配置出入口文件
const path = require('path')
module.exports = {
// 配置入口文件 入口的值可以是一个字符串 也可以是一个对象
// entry: './src/main.js'
entry: {
// 入口文件是对象的时候 对象的key(在不配置output的时候)会作为默认生成的js文件的文件名称
index: './src/main.js'
},
// 打包输出文件的相关配置
// publicPath : __dirname + '/static/' 表示publicpath(资源引入路径)为绝对路径
// publicPath: '/' 资源引入从根目录开始
// publicPath: './' 代表相对路径
output: {
publicPath: '/', // 公共资源引入的路径
path: path.resolve(__dirname, 'dist'), // 将打包生成的文件夹解析到当前项目的跟目录中
filename: 'index.js' // 打包生成的js文件的名称
}
}
引入bable
{
"presets": ["@babel/preset-env"],
"plugins": ["@babel/plugin-transform-runtime"]
}
如果遇到如下警告
WARNING: We noticed you're using the `useBuiltIns` option without declaring a core-js version. Currently, we assume version 2.x when no version is passed. Since this default version will likely change in future versions of Babel, we recommend explicitly setting the core-js version you are using via the `corejs` option.
You should also be sure that the version you pass to the `corejs` option matches the version specified in your `package.json`'s `dependencies` section. If it doesn't, you need to run one of the following commands:
npm install --save core-js@2 npm install --save core-js@3
yarn add core-js@2 yarn add core-js@3
{
"presets": [
[
"@babel/preset-env",
{
"useBuiltIns": "usage",
"corejs": 3
}
]
],
"plugins": ["@babel/plugin-transform-runtime"]
}
安装结束后配置babel-loader
// 在webpack.config.js中添加配置
module: {
rules: [
test: /\.js$/
exclude: '/node_modules/',
use: {
loader: 'babel-loader'
}
]
}
const path = require('path')
const { CleanWebpackPlugin } = require('clean-webpack-plugin');
const htmlWebpackPlugin = require('html-webpack-plugin')
module.exports = {
entry: {
index: './src/main.js'
},
output: {
publicPath: '/',
path: path.resolve(__dirname, 'dist'),
filename: 'index.js'
},
plugins: [
new CleanWebpackPlugin(),
new htmlWebpackPlugin({
title: '自定义标题',
minify: {
removeComments: true, // 打包后移除html文件中的注释
collapseWhitespace: true, // 打包后移除html文件中的空白符
minifyCSS: true // 压缩内联css
},
template: './public/index.html', // 生成html文件所需要的模板文件
filename: 'index.html' // 配置生成的html文件名称
})
],
module: {
rules: [
{
test: /\.js$/
exclude: '/node_modules/',
use: {
loader: 'babel-loader'
}
}
]
}
}
const path = require('path')
const { CleanWebpackPlugin } = require('clean-webpack-plugin');
const htmlWebpackPlugin = require('html-webpack-plugin')
const webpack = require('webpack')
const VueLoaderPlugin = require('vue-loader/lib/plugin')
module.exports = {
entry: {
index: './src/main.js'
},
output: {
publicPath: '/',
path: path.resolve(__dirname, 'dist'),
filename: 'index.js'
},
plugins: [
new CleanWebpackPlugin(),
new webpack.HotModuleReplacementPlugin(), // 热部署模块
new webpack.NamedModulesPlugin(),
new VueLoaderPlugin(),
new htmlWebpackPlugin({
title: '自定义标题',
minify: {
removeComments: true,
collapseWhitespace: true, // 打包后移除html文件中的空白符
minifyCSS: true // 压缩内联css
},
template: './public/index.html', // 生成html文件所需要的模板文件
filename: 'index.html' // 配置生成的html文件名称
})
],
module: {
rules: [
{
test: /\.js$/
exclude: '/node_modules/',
use: {
loader: 'babel-loader'
}
}
]
},
mode: 'development', // 开发模式
devtool: 'source-map', // 开启调试
devServer: {
contentBase: path.join(__dirname, 'static'),
port: 3000, // 本地服务器端口号
hot: true, // 热重载
overlay: true, // 如果代码出错,会在浏览器页面弹出“浮动层”。类似于 vue-cli 等脚手架
historyApiFallback: {
// HTML5 history模式
rewrites: [{ from: /.*/, to: '/index.html' }]
}
}
}