上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 28 下一页
  2022年5月4日
摘要: module: { rules: [ test: /\.jpg/, type: 'asset' ] } 现在,webpack 将按照默认条件,自动地在 resource 和 inline 之间进行选择: 小于 8kb 的文件,将会视为 inline 模块类型,否则会被视为 resource 模块类 阅读全文
posted @ 2022-05-04 16:21 weakup 阅读(7) 评论(0) 推荐(0) 编辑
摘要: module: { rules: [ test: /\.txt/, type: 'asset/source' ] } 所有 .txt 文件将原样注入到 bundle 中 阅读全文
posted @ 2022-05-04 16:16 weakup 阅读(11) 评论(0) 推荐(0) 编辑
摘要: // 配置资源文件 module: { [ { test: /\.svg/, type: 'asset/inline' } ], } //... module.exports = { //... // 配置资源文件 module: { rules: [ //... { test: /\.svg/, 阅读全文
posted @ 2022-05-04 15:57 weakup 阅读(17) 评论(0) 推荐(0) 编辑
摘要: 自定义输出文件名 默认情况下, asset/resource 模块以 [contenthash][ext][query] 文件名 发送到输出目录。 可以通过在 webpack 配置中设置 output.assetModuleFilename 来修改此模 板字符串:output: { assetMod 阅读全文
posted @ 2022-05-04 15:47 weakup 阅读(290) 评论(0) 推荐(0) 编辑
摘要: webpack-dev-server 为你提供了一个基本的 web server,并且具有 live reloading(实时重新加载) 功能。先安装: npm install --save-dev webpack-dev-server 修改配置文件,告知 dev server,从什么位置查找文件: 阅读全文
posted @ 2022-05-04 15:37 weakup 阅读(58) 评论(0) 推荐(0) 编辑
摘要: //... module.exports = { //... output: { //... // 打包前清理 dist 文件夹 clean: true }, //... } 千锋大 阅读全文
posted @ 2022-05-04 15:29 weakup 阅读(70) 评论(0) 推荐(0) 编辑
摘要: const path = require('path') const HtmlWebpackPlugin = require('html-webpack-plugin') module.exports = { entry: './src/index.js', output: { filename: 阅读全文
posted @ 2022-05-04 15:25 weakup 阅读(26) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/qq_64143127/article/details/123467297 阅读全文
posted @ 2022-05-04 14:59 weakup 阅读(47) 评论(0) 推荐(0) 编辑
摘要: const { resolve } = require('path'); const HtmlWebpackPlugin = require('html-webpack-plugin'); const TerserWebpackPlugin = require('terser-webpack-plu 阅读全文
posted @ 2022-05-04 11:23 weakup 阅读(202) 评论(0) 推荐(0) 编辑
摘要: const { resolve } = require('path'); const HtmlWebpackPlugin = require('html-webpack-plugin'); module.exports = { entry: './src/js/index.js', output: 阅读全文
posted @ 2022-05-04 11:06 weakup 阅读(44) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 28 下一页