2 Star 0 Fork 0

zhangrenyang/antd

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
webpack.config.js 3.42 KB
一键复制 编辑 原始数据 按行查看 历史
Your Name 提交于 2021-09-19 22:44 . feat() init
const path = require('path');
//提取CSS文件的
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
//当前命令所在的目录
const cwd = process.cwd();
module.exports = {
mode: 'development',//开发模式
devtool: false,//关闭生成sourcemap
entry: {
antd: './index.js',
},
output: {
path: path.resolve('dist'),//输出到dist目录
filename: '[name].js',//打包后的文件 antd.css
library: 'antd',//打包后库的名字
libraryTarget: 'umd',//打包后模块的格式 umd amd cmd commonjs commonjs window
},
externals: {//组件库代码其实是不需要打包react 和react-dom进去的
react: {//外部依赖
root: 'React',
commonjs2: 'react',
commonjs: 'react',
amd: 'react',
},
'react-dom': {
root: 'ReactDOM',
commonjs2: 'react-dom',
commonjs: 'react-dom',
amd: 'react-dom',
},
},
resolve: {
extensions: ['.ts', '.tsx', '.js', '.jsx', '.json']//指定扩展名
},
module: {
rules: [
{
test: /\.(j|t)sx?$/,//配置如何加载js ts jsx tsx
exclude: /node_modules/,
loader: 'babel-loader',
},
{
test: /\.css$/,
use: [
MiniCssExtractPlugin.loader,//把这些CSS收集起来后面通过插件写入单独的antd.css
{
loader: 'css-loader',//处理@import和url
options: {
sourceMap: true,
},
},
{
loader: 'postcss-loader', //加厂商前缀
options: {
postcssOptions: {
plugins: ['autoprefixer'],
},
sourceMap: true,
},
},
],
},
{
test: /\.less$/,
use: [
MiniCssExtractPlugin.loader,
{
loader: 'css-loader',
options: {
sourceMap: true,
},
},
{
loader: 'postcss-loader',
options: {
postcssOptions: {
plugins: ['autoprefixer'],
},
sourceMap: true,
},
},
{
loader: 'less-loader',//把less编译 成css
options: {
lessOptions: {
javascriptEnabled: true,
},
sourceMap: true,
},
},
],
},
{//webpack5里file-loaer url-loader已经废弃 了
test: /\.(png|jpg|jpeg|gif|svg)(\?v=\d+\.\d+\.\d+)?$/i,
type: 'asset'//静态文件不再需要配置loader
},
],
},
plugins: [
new MiniCssExtractPlugin({
filename: '[name].css',
}),
],
};
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/zhang_renyang/antd.git
git@gitee.com:zhang_renyang/antd.git
zhang_renyang
antd
antd
master

搜索帮助