webpack使用详细步骤

打印 上一主题 下一主题

主题 935|帖子 935|积分 2805

项目形貌

   本项目 webpack 的根本使用。
webpack 官方:https://webpack.docschina.org/concepts/
Element-plus 官方:https://element-plus.sxtxhy.com/zh-CN/
Vue3 官方:https://cn.vuejs.org/
  项目组成明细

   每个步骤完成后重新实行 npm run dev 即可看到结果
  1、webpack

   打包工具
  安装

  1. npm install webpack --save-dev
复制代码
package.json

   设置 dev 下令
  1. {
  2.   "name": "test",
  3.   "version": "1.0.0",
  4.   "description": "",
  5.   "main": "index.js",
  6.   "scripts": {
  7.     "dev": "npx webpack --config webpack.dev.js"
  8.   },
  9.   "keywords": [],
  10.   "author": "",
  11.   "license": "ISC",
  12.   "devDependencies": {
  13.     "webpack": "^5.98.0"
  14.   }
  15. }
复制代码
入口文件 main.js

   创建 src 文件夹,创建文件 main.js
  1. const h1 = document.createElement('h1')
  2. h1.innerHTML = '666'
  3. document.body.appendChild(h1)
  4. console.log(h1)
  5. console.log(process.env.NODE_ENV === 'development')
复制代码
设置文件 webpack.dev.js

  1. const path = require('path')
  2. module.exports = {
  3.   mode: 'development', // 开发模式
  4.   // 入口文件
  5.   entry: {
  6.     dev_index: './src/main.js' // 这个对象的键名会传递到下面的'[name].bundle.js'中的 name
  7.   },
  8.   // 输出文件
  9.   output: {
  10.     filename: '[name].bundle.js', // 输出文件名
  11.     path: path.resolve(__dirname, 'dist') // 输出文件目录
  12.   },
  13.   devtool: 'inline-source-map' // 开启source-map
  14. }
复制代码
2、html-webpack-plugin

   天生 html 文件
  安装

  1. npm install html-webpack-plugin --save-dev
复制代码
package.json

  1. {
  2.   // ...
  3.   "devDependencies": {
  4.     "webpack": "^5.98.0",
  5.     "html-webpack-plugin": "^5.6.3"
  6.   }
  7. }
复制代码
创建文件 index.html

   src 下面创建文件 index.html
  1. <!DOCTYPE html>
  2. <html>
  3.   <head>
  4.     <meta charset="utf-8" />
  5.     <title><%= htmlWebpackPlugin.options.title %></title>
  6.   </head>
  7.   <body>
  8.     <div id="app"></div>
  9.   </body>
  10. </html>
复制代码
webpack.dev.js

  1. const path = require('path')
  2. const HtmlWebpackPlugin = require('html-webpack-plugin')
  3. module.exports = {
  4.   // ...
  5.   plugins: [
  6.     new HtmlWebpackPlugin({
  7.       title: 'template5-dev', // 生成的HTML文件标题
  8.       filename: 'index.html' // 生成的HTML文件名
  9.       template: './src/index.html', // 不配置此项,默认生成index.html;配置此项传递自定义HTML文件
  10.       // favicon: path.join(__dirname, './src/img/favicon.ico')
  11.     })
  12.   ]
  13. }
复制代码
3、webpack-dev-server

   启动一个当地服务器,并实时更新页面
  安装

  1. npm install webpack-dev-server --save-dev
复制代码
package.json

   dev 下令增长 serve
  1. {
  2.   // ...
  3.   "scripts": {
  4.     "dev": "npx webpack serve --config webpack.dev.js"
  5.   },
  6.   // ...
  7.   "devDependencies": {
  8.     "webpack": "^5.98.0",
  9.     "html-webpack-plugin": "^5.6.3",
  10.     "webpack-dev-server": "^5.2.0"
  11.   }
  12. }
复制代码
webpack.dev.js

  1. const path = require('path')
  2. const HtmlWebpackPlugin = require('html-webpack-plugin')
  3. module.exports = {
  4.   // ...
  5.   devServer: {
  6.     static: './dist', // 静态资源目录
  7.     hot: true, // 开启模块热更新
  8.     port: 8080, // 端口号
  9.     open: true, // 自动打开浏览器
  10.     watchFiles: ['./src/index.html'], // 监听文件变化(自动刷新页面)
  11.     client: {
  12.       logging: 'none' // 关闭客户端日志
  13.       // logging: 'error', // 仅显示错误
  14.     }
  15.   }
  16. }
复制代码
4、style-loader、css-loader

   处置惩罚 css 文件
  安装

  1. npm install style-loader css-loader --save-dev
复制代码
package.json

  1. {
  2.   // ...
  3.   "devDependencies": {
  4.     "webpack": "^5.98.0",
  5.     "html-webpack-plugin": "^5.6.3",
  6.     "webpack-dev-server": "^5.2.0",
  7.     "style-loader": "^4.0.0",
  8.     "css-loader": "^7.1.2"
  9.   }
  10. }
复制代码
main.js

   src 下面创建 css 文件夹,里面创建 index.css
  1. // ...
  2. import './css/index.css'
复制代码
webpack.dev.js

  1. const path = require('path')
  2. const HtmlWebpackPlugin = require('html-webpack-plugin')
  3. module.exports = {
  4.   // ...
  5.   module: {
  6.     rules: [
  7.       {
  8.         test: /\.css$/i, // 匹配css文件
  9.         use: ['style-loader', 'css-loader'] // 使用loader
  10.       }
  11.     ]
  12.   }
  13. }
复制代码
5、url-loader

   处置惩罚图片、字体等静态资源
  安装

  1. npm install url-loader --save-dev
复制代码
package.json

  1. {
  2.   // ...
  3.   "devDependencies": {
  4.     "webpack": "^5.98.0",
  5.     "html-webpack-plugin": "^5.6.3",
  6.     "webpack-dev-server": "^5.2.0",
  7.     "style-loader": "^4.0.0",
  8.     "css-loader": "^7.1.2",
  9.     "url-loader": "^4.1.1"
  10.   }
  11. }
复制代码
main.js

   src 下面创建 img 文件夹, 添加 favicon.ico 文件
  1. // ...
  2. import img from './img/favicon.ico'
  3. console.log(img)
  4. document.body.appendChild(img)
复制代码
webpack.dev.js

  1. const path = require('path')
  2. const HtmlWebpackPlugin = require('html-webpack-plugin')
  3. module.exports = {
  4.   // ...
  5.   module: {
  6.     rules: [
  7.       // ...
  8.       {
  9.         test: /\.(png|svg|jpg|jpeg|gif)$/i, // 匹配图片文件
  10.         use: [{ loader: 'url-loader', options: { limit: 6000, esModule: false, name: '[name].[ext]', outputPath: 'images' } }], // 使用loader
  11.         type: 'javascript/auto' // 解决图片打包后路径问题
  12.       }
  13.     ]
  14.   }
  15. }
复制代码
6、terser-webpack-plugin

   压缩代码,去掉解释与 console.log 等 [生产环境时设置]
  安装

  1. npm install terser-webpack-plugin --save-dev
复制代码
package.json

   增长 build 下令
  1. {
  2.   // ...
  3.   "scripts": {
  4.     "dev": "npx webpack serve --config webpack.dev.js",
  5.     "build": "npx webpack --config webpack.prod.js"
  6.   },
  7.   // ...
  8.   "devDependencies": {
  9.     "webpack": "^5.98.0",
  10.     "html-webpack-plugin": "^5.6.3",
  11.     "webpack-dev-server": "^5.2.0",
  12.     "style-loader": "^4.0.0",
  13.     "css-loader": "^7.1.2",
  14.     "url-loader": "^4.1.1",
  15.     "terser-webpack-plugin": "^5.3.14"
  16.   }
  17. }
复制代码
创建文件 webpack.prod.js

   生产环境设置文件
  1. const path = require('path')
  2. const HtmlWebpackPlugin = require('html-webpack-plugin')
  3. const TerserPlugin = require('terser-webpack-plugin')
  4. module.exports = {
  5.   mode: 'production',
  6.   entry: {
  7.     index: './src/main.js'
  8.   },
  9.   output: {
  10.     publicPath: './',
  11.     filename: '[name].js',
  12.     path: path.resolve(__dirname, 'dist'),
  13.     clean: true
  14.   },
  15.   plugins: [
  16.     new HtmlWebpackPlugin({
  17.       title: 'template5',
  18.       filename: 'index.html',
  19.       template: './src/index.html',
  20.       favicon: path.join(__dirname, './src/img/favicon.ico')
  21.     })
  22.   ],
  23.   module: {
  24.     rules: [
  25.       {
  26.         test: /\.css$/i,
  27.         use: ['style-loader', 'css-loader']
  28.       },
  29.       {
  30.         test: /\.(png|svg|jpg|jpeg|gif)$/i,
  31.         use: [{ loader: 'url-loader', options: { limit: 6000, esModule: false, name: '[name].[ext]', outputPath: 'images' } }],
  32.         type: 'javascript/auto'
  33.       }
  34.     ]
  35.   },
  36.   optimization: {
  37.     minimizer: [
  38.       new TerserPlugin({
  39.         terserOptions: {
  40.           compress: {
  41.             drop_console: true // 移除所有 console.*
  42.           },
  43.           format: {
  44.             comments: false // 移除所有注释
  45.           }
  46.         },
  47.         extractComments: false // 禁止生成独立的注释文件
  48.       })
  49.     ]
  50.   }
  51. }
复制代码
7、vue-loader

   处置惩罚 vue 文件
  安装

  1. npm install vue
  2. -loader --save-dev
复制代码
安装 vue3

  1. npm install vue
复制代码
package.json

  1. {
  2.   // ...
  3.   "dependencies": {
  4.     "vue": "^3.5.13"
  5.   },
  6.   "devDependencies": {
  7.     "webpack": "^5.98.0",
  8.     "html-webpack-plugin": "^5.6.3",
  9.     "webpack-dev-server": "^5.2.0",
  10.     "style-loader": "^4.0.0",
  11.     "css-loader": "^7.1.2",
  12.     "url-loader": "^4.1.1",
  13.     "terser-webpack-plugin": "^5.3.14",
  14.     "vue-loader": "^17.4.2"
  15.   }
  16. }
复制代码
创建文件 App.vue

   src 下面创建 App.vue
  1. <template>
  2.   <header>
  3.     <h1>{{ test_name }}</h1>
  4.   </header>
  5.   <main></main>
  6.   <footer></footer>
  7. </template>
  8. <script setup>
  9. import { ref } from 'vue'
  10. const test_name = ref('app.vue')
  11. </script>
复制代码
main.js

  1. // ...
  2. import { createApp } from 'vue'
  3. import App from './App.vue'
  4. const app = createApp(App)
  5. app.mount('#app')
复制代码
webpack.dev.js

  1. const path = require('path')
  2. const HtmlWebpackPlugin = require('html-webpack-plugin')
  3. const { VueLoaderPlugin } = require('vue-loader')
  4. module.exports = {
  5.   // ...
  6.   plugins: [
  7.     // ...
  8.     new VueLoaderPlugin() // 添加VueLoaderPlugin
  9.   ],
  10.   // ...
  11.   module: {
  12.     rules: [
  13.       // ...
  14.       {
  15.         test: /\.vue$/,
  16.         loader: 'vue-loader'
  17.       }
  18.     ]
  19.   }
  20. }
复制代码
7.1 不使用 vue-loader 加载 vue

   不使用 vue-loader 插件,也可以使用 vue 的方法
此法打包后项目大些,编译速率慢些,正常不保举
  main.js

  1. // ...
  2. import { createApp } from 'vue'
  3. createApp({
  4.   data() {
  5.     return {
  6.       msg: 'Hello Vue!'
  7.     }
  8.   }
  9. }).mount('#app')
复制代码
index.html

  1. <!DOCTYPE html>
  2. <html>
  3.   <head>
  4.     <meta charset="utf-8" />
  5.     <title><%= htmlWebpackPlugin.options.title %></title>
  6.   </head>
  7.   <body>
  8.     <div id="app">{{ msg }}</div>
  9.   </body>
  10. </html>
复制代码
webpack.dev.js

   打包生产时也要加上此设置
  1. const path = require('path')
  2. const HtmlWebpackPlugin = require('html-webpack-plugin')
  3. module.exports = {
  4.   // ...
  5.   resolve: {
  6.     alias: {
  7.       vue$: 'vue/dist/vue.esm-bundler.js' // 包含编译器的构建版本
  8.     }
  9.   }
  10. }
复制代码
8、全局加载 Element plus

   全局加载打包后项目偏大,但设置简朴
  安装

  1. npm install element-plus
复制代码
package.json

  1. {
  2.   // ...
  3.   "dependencies": {
  4.     "vue": "^3.5.13",
  5.     "element-plus": "^2.9.6"
  6.   }
  7.   // ...
  8. }
复制代码
main.js

  1. // ...
  2. import { createApp } from 'vue'
  3. import App from './App.vue'
  4. import ElementPlus from 'element-plus'
  5. import 'element-plus/dist/index.css'
  6. import zhCn from 'element-plus/dist/locale/zh-cn.mjs'
  7. const app = createApp(App)
  8. app.use(ElementPlus, {
  9.   locale: zhCn
  10. })
  11. app.mount('#app')
复制代码
8.1、按需加载 Element plus

   按需加载打包后项目偏小,但设置复杂,而且必要安装插件
  安装插件

   安装旧版,因最新版默认导出 ESM 格式,不支持 CommonJS 格式
  1. npm install unplugin-auto-import@0.16.1 unplugin-vue-components@0.25.1 --save-dev
复制代码
main.js

   无需设置,如之前已设置全局 Element plus,需去掉
  1. // ...
  2. import { createApp } from 'vue'
  3. import App from './App.vue'
  4. const app = createApp(App)
  5. app.mount('#app')
复制代码
App.vue

   使用方法,并设置国际化
  1. <template>
  2.   <el-config-provider :locale="zhCn">
  3.     <el-button type="primary" @click="testOpen('test')">test</el-button>
  4.   </el-config-provider>
  5. </template>
  6. <script setup>
  7. import { ref } from 'vue'
  8. import { ElConfigProvider } from 'element-plus'
  9. import zhCn from 'element-plus/dist/locale/zh-cn.mjs'
  10. const testOpen = (name) => {
  11.   ElMessage('this is a message.')
  12. }
  13. </script>
复制代码
webpack.dev.js

  1. const path = require('path')
  2. const HtmlWebpackPlugin = require('html-webpack-plugin')
  3. const { VueLoaderPlugin } = require('vue-loader')
  4. const AutoImport = require('unplugin-auto-import/webpack')
  5. const Components = require('unplugin-vue-components/webpack')
  6. const { ElementPlusResolver } = require('unplugin-vue-components/resolvers')
  7. module.exports = {
  8.   // ...
  9.   plugins: [
  10.     // ...
  11.     AutoImport({
  12.       resolvers: [ElementPlusResolver()]
  13.     }),
  14.     Components({
  15.       resolvers: [ElementPlusResolver()]
  16.     })
  17.   ]
  18.   // ...
  19. }
复制代码
9、axios

   哀求 axios
  安装

  1. npm install axios
复制代码
package.json

  1. {
  2.   // ...
  3.   "dependencies": {
  4.     "vue": "^3.5.13",
  5.     "element-plus": "^2.9.6",
  6.     "axios": "^1.8.4"
  7.   }
  8.   // ...
  9. }
复制代码
创建 api.js

   在 src 目录下创建 api.js
  1. import axios from 'axios'
  2. const api = axios.create({
  3.   baseURL: 'http://localhost:9000',
  4.   timeout: 60000,
  5.   headers: { ['Content-Type']: 'application/x-www-form-urlencoded' }
  6.   // withCredentials: true // 跨域请求时是否需要使用凭证(携带cookie)
  7. })
  8. // 请求拦截器
  9. api.interceptors.request.use(
  10.   (req) => {
  11.     return req
  12.   },
  13.   (err) => {
  14.     return Promise.reject(err)
  15.   }
  16. )
  17. // 响应拦截器
  18. api.interceptors.response.use(
  19.   (res) => {
  20.     return res.data
  21.   },
  22.   (err) => {
  23.     return Promise.reject(err)
  24.   }
  25. )
  26. const { get, post, put, delete: del } = api
  27. export const testGet = (params) => {
  28.   return get('/tianqiApi', { params })
  29. }
复制代码
App.vue

  1. <template>
  2.   <!-- // ... -->
  3. </template>
  4. <script setup>
  5. // ...
  6. import { testGet } from './api'
  7. const testApi = async () => {
  8.   try {
  9.     const res = await testGet()
  10.     console.log(res)
  11.   } catch (error) {
  12.     console.log(error)
  13.   }
  14. }
  15. testApi()
  16. </script>
复制代码
完备设置 webpack.dev.js

   开辟设置
  1. const path = require('path')
  2. const HtmlWebpackPlugin = require('html-webpack-plugin')
  3. const { VueLoaderPlugin } = require('vue-loader')
  4. const AutoImport = require('unplugin-auto-import/webpack')
  5. const Components = require('unplugin-vue-components/webpack')
  6. const { ElementPlusResolver } = require('unplugin-vue-components/resolvers')
  7. module.exports = {
  8.   mode: 'development', // 开发模式
  9.   // 入口文件
  10.   entry: {
  11.     dev_index: './src/main.js' // 这个对象的键名会传递到下面的'[name].bundle.js'中的 name
  12.   },
  13.   // 输出文件
  14.   output: {
  15.     filename: '[name].bundle.js', // 输出文件名
  16.     path: path.resolve(__dirname, 'dist') // 输出文件目录
  17.   },
  18.   devtool: 'inline-source-map', // 开启source-map
  19.   devServer: {
  20.     static: './dist', // 静态资源目录
  21.     hot: true, // 开启模块热更新
  22.     port: 8080, // 端口号
  23.     open: true, // 自动打开浏览器
  24.     watchFiles: ['./src/index.html'], // 监听文件变化(自动刷新页面)
  25.     client: {
  26.       logging: 'none' // 关闭客户端日志
  27.       // logging: 'error', // 仅显示错误
  28.     }
  29.   },
  30.   plugins: [
  31.     new HtmlWebpackPlugin({
  32.       title: 'template5-dev', // 生成的HTML文件标题
  33.       filename: 'index.html', // 生成的HTML文件名
  34.       template: './src/index.html', // 不配置此项,默认生成index.html;配置此项传递自定义HTML文件
  35.       favicon: path.join(__dirname, './src/img/favicon.ico')
  36.     }),
  37.     new VueLoaderPlugin(), // 添加VueLoaderPlugin
  38.     AutoImport({
  39.       resolvers: [ElementPlusResolver()]
  40.     }),
  41.     Components({
  42.       resolvers: [ElementPlusResolver()]
  43.     })
  44.   ],
  45.   module: {
  46.     rules: [
  47.       {
  48.         test: /\.css$/i, // 匹配css文件
  49.         use: ['style-loader', 'css-loader'] // 使用loader
  50.       },
  51.       {
  52.         test: /\.(png|svg|jpg|jpeg|gif)$/i, // 匹配图片文件
  53.         use: [{ loader: 'url-loader', options: { limit: 6000, esModule: false, name: '[name].[ext]', outputPath: 'images' } }], // 使用loader
  54.         type: 'javascript/auto' // 解决图片打包后路径问题
  55.       },
  56.       {
  57.         test: /\.vue$/,
  58.         loader: 'vue-loader'
  59.       }
  60.     ]
  61.   }
  62. }
复制代码
完备设置 webpack.prod.js

   生产设置
  1. const path = require('path')
  2. const HtmlWebpackPlugin = require('html-webpack-plugin')
  3. const TerserPlugin = require('terser-webpack-plugin')
  4. const { VueLoaderPlugin } = require('vue-loader')
  5. const AutoImport = require('unplugin-auto-import/webpack')
  6. const Components = require('unplugin-vue-components/webpack')
  7. const { ElementPlusResolver } = require('unplugin-vue-components/resolvers')
  8. module.exports = {
  9.   mode: 'production', // 生产模式
  10.   // 入口文件
  11.   entry: {
  12.     index: './src/main.js' // 这个对象的键名会传递到下面的'[name].bundle.js'中的 name
  13.   },
  14.   // 输出文件
  15.   output: {
  16.     publicPath: './', // 输出文件路径前缀
  17.     filename: '[name].js', // 输出文件名
  18.     path: path.resolve(__dirname, 'dist'), // 输出文件目录
  19.     clean: true // 每次构建前清理dist目录
  20.   },
  21.   plugins: [
  22.     new HtmlWebpackPlugin({
  23.       title: 'template5', // 生成的HTML文件标题
  24.       filename: 'index.html', // 生成的HTML文件名
  25.       template: './src/index.html', // 不配置此项,默认生成index.html;配置此项传递自定义HTML文件
  26.       favicon: path.join(__dirname, './src/img/favicon.ico')
  27.     }),
  28.     new VueLoaderPlugin(), // 添加VueLoaderPlugin
  29.     AutoImport({
  30.       resolvers: [ElementPlusResolver()]
  31.     }),
  32.     Components({
  33.       resolvers: [ElementPlusResolver()]
  34.     })
  35.   ],
  36.   module: {
  37.     rules: [
  38.       {
  39.         test: /\.css$/i, // 匹配css文件
  40.         use: ['style-loader', 'css-loader'] // 使用loader
  41.       },
  42.       {
  43.         test: /\.(png|svg|jpg|jpeg|gif)$/i, // 匹配图片文件
  44.         use: [{ loader: 'url-loader', options: { limit: 6000, esModule: false, name: '[name].[ext]', outputPath: 'images' } }], // 使用loader
  45.         type: 'javascript/auto' // 解决图片打包后路径问题
  46.       },
  47.       {
  48.         test: /\.vue$/,
  49.         loader: 'vue-loader'
  50.       }
  51.     ]
  52.   },
  53.   optimization: {
  54.     minimizer: [
  55.       new TerserPlugin({
  56.         terserOptions: {
  57.           compress: {
  58.             drop_console: true // 移除所有 console.*
  59.           },
  60.           format: {
  61.             comments: false // 移除所有注释
  62.           }
  63.         },
  64.         extractComments: false // 禁止生成独立的注释文件
  65.       })
  66.     ]
  67.   }
  68. }
复制代码
完备设置 package.json

  1. {
  2.   "name": "template5",
  3.   "version": "1.0.0",
  4.   "description": "",
  5.   "main": "index.js",
  6.   "scripts": {
  7.     "dev": "npx webpack serve --config webpack.dev.js",
  8.     "build": "npx webpack --config webpack.prod.js"
  9.   },
  10.   "keywords": [],
  11.   "author": "",
  12.   "license": "ISC",
  13.   "dependencies": {
  14.     "axios": "^1.8.4",
  15.     "element-plus": "^2.9.6",
  16.     "vue": "^3.5.13"
  17.   },
  18.   "devDependencies": {
  19.     "webpack": "^5.98.0",
  20.     "html-webpack-plugin": "^5.6.3",
  21.     "webpack-dev-server": "^5.2.0",
  22.     "style-loader": "^4.0.0",
  23.     "css-loader": "^7.1.2",
  24.     "url-loader": "^4.1.1",
  25.     "vue-loader": "^17.4.2",
  26.     "terser-webpack-plugin": "^5.3.14",
  27.     "unplugin-auto-import": "^0.16.1",
  28.     "unplugin-vue-components": "^0.25.1"
  29.   }
  30. }
复制代码
完备目录布局

  1. src
  2. |- img
  3. |  |- favicon.ico
  4. |- css
  5. |  |- index.css
  6. |- api.js // api文件
  7. |- main.js // 入口文件
  8. |- index.html // html文件
  9. |- App.vue // vue文件
  10. package.json
  11. webpack.dev.js
  12. webpack.prod.js
复制代码
免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。
回复

使用道具 举报

0 个回复

倒序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

灌篮少年

金牌会员
这个人很懒什么都没写!
快速回复 返回顶部 返回列表