Ai
7 Star 39 Fork 7

哈浪/react-hooks

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
webpack.prod.js 1.10 KB
一键复制 编辑 原始数据 按行查看 历史
halang 提交于 2022-05-13 09:56 +08:00 . init
const path = require('path')
const MiniCssExtractPlugin = require('mini-css-extract-plugin'); // 样式隔离
const { CleanWebpackPlugin }= require('clean-webpack-plugin'); //清除插件
const {merge} = require('webpack-merge')
const common = require('./webpack.config')
module.exports = merge(common, {
mode: 'production', // 指定构建模式
devServer: {
static: {
directory: path.join(__dirname, 'dist'),
},
compress: true,
hot: true, // 热加载的配置
port: 9000,
},
plugins: [
new MiniCssExtractPlugin({
filename: '[name].css'
}),
new CleanWebpackPlugin(),
// new BundleAnalyzerPlugin()
],
// 使用SplitChunksPlugin不需要安装任何依赖,只需在 webpack.config.js 中的 config对象添加 optimization 属性:
optimization: {
splitChunks: {
chunks: 'initial',
automaticNameDelimiter: '.',
cacheGroups: {
vendors: {
test: /[\\/]node_modules[\\/]/,
priority: 1
}
}
},
runtimeChunk: {
name: entrypoint => `manifest.${entrypoint.name}`
}
}
}
)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/ha-lang/react-hooks.git
git@gitee.com:ha-lang/react-hooks.git
ha-lang
react-hooks
react-hooks
master

搜索帮助