webpack5 (四)

react-cli 中配置

开发环境

javascript 复制代码
const path = require('path')
const EslintWebpackPlugin = require('eslint-webpack-plugin')
const HtmlWebpackPlugin = require('html-webpack-plugin')
const ReactRefreshWebpackPlugin = require('@pmmmwh/react-refresh-webpack-plugin');
//封装处理样式配置
const getStyleloaders = (pre)=>{
    return [
        'style-loader',
        'css-loader',
        // 处理 css 兼容性问题
        //需要配合 package.json 中的browserslist 来指定兼容性做到什么程度
        {
            loader: 'postcss-loader',
            options: {
                postcssOptions: {
                    plugins: 'postcss-preset-env'
                }
            }
        },
        pre
    ].filter(Boolean)
};
//要用 commonjs的方式以对象的模式暴露出去
module.exports = {
    // 入口文件
    entry: './src/main.js',
    // 出口文件
    output: {
        path: undefined,
        filename: 'static/js/[name].js',
        chunkFilename: 'static/js/[name].chunk.js',
        assetModuleFilename: 'static/media/[hash:10][etx][query]'
    },
    // 配置loader
    module: {
        rules: [
            // 处理 css 
            {
                test: /\.css$/,
                use: getStyleloaders()
            },
            {
                test: /\.less$/,
                use: getStyleloaders('less-loader')
            },
            {
                test: /\.s[ac]ss$/,
                use: getStyleloaders('sass-loader')
            },
            {
                test: /\.styl$/,
                use: getStyleloaders('stylus-loader')
            },
            // 处理 图片
            {
                test:/\.(jpe?g|png|gif|webp|svg)$/,
                type:'asset',
                parser:{
                    dataUrlCondition:{
                        maxSize:10*1024,
                    }
                }
            },
            //处理其他资源
            {
                test:/\.(woff2?|ttf)$/,
                type:'asset/resource'
            },
            // 处理 js
            {
                test:/\.jsx?$/,
                include:path.resolve(__dirname,'../src'),
                loader:'babel-loader',//babel 也需要有一个 babel 的配置文件
                options:{
                    catchDirectory:true,
                    catchCompression:false,
                    plugins:[
                        'react-refresh/babel',//用来解决react脚手架下 js不能热更新的问题
                    ]
                }
            }
        ]
    },
    // 配置plugin
    // 处理html 
    plugin:[
        //eslint 插件也是需要有自己的配置文件
        new EslintWebpackPlugin({
            context:path.resolve(__dirname,'../src'),
            exclude:'node_modules',
            cache:true,
            cacheLocation:path.resolve(__dirname,'../node_modules/.catch/.eslintcache'),
        }),
        new HtmlWebpackPlugin({
            template:path.resolve(__dirname,'../public/index.html'),
        }),
        new ReactRefreshWebpackPlugin()//用来解决react脚手架下 js不能热更新的问题
    ],
    // 环境设置
    mode:'development',
    devtool:'cheap-module-source-map',
    optimization:{
        splitChunks:{
            chunks:'all'
        },
        runtimeChunk:{
            name:(entrypoint)=>`runtime~${entrypoint.name}.js`,
        }
    },
    //webpack 解析模块加载选项 
    // 解决运行react项目时报错 Module not found:Error:can't resolve './App' in 'xx/xxx/xxx/x'
    resolve:{
        //自动补全文件扩展名
        extentions:['.jsx','.js','json']
    },
    devServer:{
        host:'localhost',
        port:3000,
        open:true,
        hot:true,
        historyApiFallback:true,//解决前端路由刷新404问题
    }
}

生产模式

javascript 复制代码
const path = require('path')
const EslintWebpackPlugin = require('eslint-webpack-plugin')
const HtmlWebpackPlugin = require('html-webpack-plugin')
// 生产模式下不需要激活热更新
// const ReactRefreshWebpackPlugin = require('@pmmmwh/react-refresh-webpack-plugin');
// CSS提取为单独文件
const MiniCssExtractPlugin = require('mini-css-extract-plugin')
// css 压缩文件
const CssMinimizerWebpackPlugin = require('css-minimizer-webpack-plugin')
// js 压缩,使用css压缩后必须使用的插件
const TerserWebpackPlugin = require('terser-webpack-plugin')
// 图片 压缩插件
const ImageMinimizerWebpackPlugin = require('image-minimizer-webpack-plugin')
// 如果出现 网站图标 需要用该复制插件将其复制到dist目录下
const CopyPlugin = require("copy-webpack-plugin");


const getStyleloaders = (pre) => {
    return [
        // 'style-loader',
        MiniCssExtractPlugin.loader,//将style-loader替换为插件loader,打包为单独文件
        'css-loader',
        {
            loader: 'postcss-loader',
            options: {
                postcssOptions: {
                    plugins: 'postcss-preset-env'
                }
            }
        },
        pre
    ].filter(Boolean)
};
module.exports = {
    entry: './src/main.js',
    output: {
        path: path.resolve(__dirname, '../dist'),//设置出口文件路径
        filename: 'static/js/[name].[contenthash:10].js',//加入哈希值
        chunkFilename: 'static/js/[name].[contenthash:10].chunk.js',//加入哈希值
        assetModuleFilename: 'static/media/[hash:10][etx][query]',
        clean: true,//将上次打包内容清空
    },
    module: {
        rules: [
            {
                test: /\.css$/,
                use: getStyleloaders()
            },
            {
                test: /\.less$/,
                use: getStyleloaders('less-loader')
            },
            {
                test: /\.s[ac]ss$/,
                use: getStyleloaders('sass-loader')
            },
            {
                test: /\.styl$/,
                use: getStyleloaders('stylus-loader')
            },
            {
                test: /\.(jpe?g|png|gif|webp|svg)$/,
                type: 'asset',
                parser: {
                    dataUrlCondition: {
                        maxSize: 10 * 1024,
                    }
                }
            },
            {
                test: /\.(woff2?|ttf)$/,
                type: 'asset/resource'
            },
            {
                test: /\.jsx?$/,
                include: path.resolve(__dirname, '../src'),
                loader: 'babel-loader',
                options: {
                    catchDirectory: true,
                    catchCompression: false,

                    // 生产模式下不需要激活热更新
                    // plugins:[
                    //     'react-refresh/babel',
                    // ]
                }
            }
        ]
    },
    plugin: [
        new EslintWebpackPlugin({
            context: path.resolve(__dirname, '../src'),
            exclude: 'node_modules',
            cache: true,
            cacheLocation: path.resolve(__dirname, '../node_modules/.catch/.eslintcache'),
        }),
        new HtmlWebpackPlugin({
            template: path.resolve(__dirname, '../public/index.html'),
        }),
        // new ReactRefreshWebpackPlugin(),// 生产模式下不需要激活热更新
        // css 打包为单独文件插件
        new MiniCssExtractPlugin({
            filename: 'static/css/name.[contenthash:10].css',
            chunkFilename: 'static/css/name.[contenthash:10].chunk.css'
        }),
        // 复制插件 处理public下其他资源 如网站图标
        new CopyPlugin({
            patterns: [
                // 设置从何处复制到何处
                {
                    from: path.resolve(__dirname,'../public'),
                    to: path.resolve(__dirname,'../dist')
                },
            ],
            globOptions: {
                //设置忽略 index.html 文件
                ignore: ['**/index.html']
            }
        }),
    ],
    mode: 'production', // 改为生产模式
    devtool: 'source-map',//使用 source-map
    optimization: {
        splitChunks: {
            chunks: 'all'
        },
        runtimeChunk: {
            name: (entrypoint) => `runtime~${entrypoint.name}.js`,
        },
        // 压缩插件放在 optimization 对象内
        minimizer: [
            new CssMinimizerWebpackPlugin(),//压缩 css 插件,
            new TerserWebpackPlugin(),//压缩 js 插件,
            //压缩图片插件,
            new ImageMinimizerWebpackPlugin({
                minimizerOptions: {
                    plugins: [
                        ["gifsicle", { interlaced: true }],
                        ["jpegtran", { progressive: true }],
                        ["optipng", { optimizationLevel: 5 }],
                        [
                            "svgo",
                            {
                                plugins: extendDefaultPlugins([
                                    {
                                        name: "removeViewBox",
                                        active: false,
                                    },
                                    {
                                        name: "addAttributesToSVGElement",
                                        params: {
                                            attributes: [{ xmlns: "http://www.w3.org/2000/svg" }],
                                        },
                                    },
                                ]),
                            },
                        ],
                    ],
                },
            }),
        ]
    },
    resolve: {
        extentions: ['.jsx', '.js', 'json']
    },

    //生产模式不需要devsever
    // devServer:{
    //     host:'localhost',
    //     port:3000,
    //     open:true,
    //     hot:true,
    //     historyApiFallback:true,
    // }
}

合并配置

将生产模式和开发模式的配置进行合并,通过 process.env.NODE_ENV 的值来判断当前为生产环境还是开发环境。

javascript 复制代码
const isProd = process.env.NODE_ENV ==='production'


//三元判断 加载哪一个插件
isProd ? MiniCssExtractPlugin.loader : 'style-loader',


//根据是否为生产模式来决定是否加载插件
plugins:[
    !isProd && 'react-refresh/babel',//用来解决react脚手架下 js不能热更新的问题
].filter(Boolean)
相关推荐
Myli_ing28 分钟前
考研倒计时-配色+1
前端·javascript·考研
余道各努力,千里自同风31 分钟前
前端 vue 如何区分开发环境
前端·javascript·vue.js
软件小伟40 分钟前
Vue3+element-plus 实现中英文切换(Vue-i18n组件的使用)
前端·javascript·vue.js
醉の虾1 小时前
Vue3 使用v-for 渲染列表数据后更新
前端·javascript·vue.js
张小小大智慧1 小时前
TypeScript 的发展与基本语法
前端·javascript·typescript
hummhumm1 小时前
第 22 章 - Go语言 测试与基准测试
java·大数据·开发语言·前端·python·golang·log4j
asleep7012 小时前
第8章利用CSS制作导航菜单
前端·css
hummhumm2 小时前
第 28 章 - Go语言 Web 开发入门
java·开发语言·前端·python·sql·golang·前端框架
幼儿园的小霸王2 小时前
通过socket设置版本更新提示
前端·vue.js·webpack·typescript·前端框架·anti-design-vue
疯狂的沙粒2 小时前
对 TypeScript 中高级类型的理解?应该在哪些方面可以更好的使用!
前端·javascript·typescript