重温webpack
Posted pikachuworld
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了重温webpack相关的知识,希望对你有一定的参考价值。
管理资源:
加载 CSS
npm install --save-dev style-loader css-loader
加载图片
npm install --save-dev file-loader
加载字体
加载数据
npm install --save-dev csv-loader xml-loader
webpack.config.js文件
const path = require(‘path‘);
module.exports =
entry: ‘./src/index.js‘,
output:
filename: ‘bundle.js‘,
path: path.resolve(__dirname, ‘dist‘)
,
module:
rules: [
test: /\\.css$/,
use: [
‘style-loader‘,
‘css-loader‘
]
,
test: /\\.(png|svg|jpg|gif|jpeg)$/,
use: [
‘file-loader‘
]
,
test: /\\.(woff|woff2|eot|ttf|otf)$/,
use: [
‘file-loader‘
]
,
test: /\\.(csv|tsv)$/,
use: [
‘csv-loader‘
]
,
test: /\\.xml$/,
use: [
‘xml-loader‘
]
]
;
参考官网:
https://www.webpackjs.com/guides/asset-management/#%E5%AE%89%E8%A3%85
以上是关于重温webpack的主要内容,如果未能解决你的问题,请参考以下文章
webpackwebpack.base.conf.js基础配置
Webpackwebpack5 模块联邦(Module Federation)
Webpackwebpack5 模块联邦(Module Federation)实践
webpackwebpack的html-webpack-plugin中的title不起作用?(已解决)