gpt4 book ai didi

javascript - webpack4 lodash 大小太大

转载 作者:行者123 更新时间:2023-12-01 17:27:01 26 4
gpt4 key购买 nike

我正在使用 React、Redux 和 Webpack 构建一个小型应用程序。当我切换到 Webpack v.4 时,我开始收到有关包大小的警告。我阅读了有关使其变小的方法。我还安装了 bundle analyzer 并看到我在节点模块中有很大的 lodash。通常我在每个文件中只使用 lodash 中的一种或两种方法,我更改了所有来自

的导入

从“loadash”导入 _

从 'lodash/get' 导入 get

但这并没有帮助我降低包大小。下面附上我的 webpack.config.js。我不知道为什么它不起作用。更令人惊讶的是,我的构建命令是 webpack --mode production 和 Accordion ,根据我在 webpack 4 文档中阅读的内容,它应该启用了一些优化开箱即用

webpack.config.js

const LodashModuleReplacementPlugin = require('lodash-webpack-plugin');
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin;

const webpack = require('webpack');

const path = require('path');

module.exports = {
entry: {
app: ['babel-polyfill', './src/index.js']
},
output: {
path: path.resolve(__dirname, './dist'),
filename: 'bundle.js',
},
devServer: {
contentBase: ".",
headers: {
"Access-Control-Allow-Origin": "*"
},
inline: true,
historyApiFallback: true,
port: 8880
},
module: {
rules: [
{
test: /\.js$/,
exclude: /node_modules/,
use: [
{
loader: 'babel-loader',
options: {
presets: ['es2015', 'react'],
plugins: ["transform-class-properties"]
}
},
{
loader: 'eslint-loader'
}
]
},
{
test: /\.(png|jpg|gif|jpeg)$/,
use: [
{
loader: 'file-loader',
options: {}
}
]
},
{
test: /^.*\.(css|scss)$/,
use: [
'style-loader',
'css-loader?importLoaders=1&modules&localIdentName=[path]___[name]__[local]___[hash:base64:5]',
{
loader: 'postcss-loader',
options: {
plugins: () => [
require('autoprefixer')({
browsers: ['last 1 version']
})
]
}
},
'sass-loader'
],
}
]
},
plugins: [
new LodashModuleReplacementPlugin(),
new BundleAnalyzerPlugin()
]
};

依赖和开发依赖。

 "dependencies": {
"babel-runtime": "^6.26.0",
"classnames": "^2.2.5",
"clean-webpack-plugin": "^0.1.17",
"css-loader": "^1.0.0",
"express": "^4.16.2",
"file-loader": "^1.1.5",
"html-webpack-plugin": "^3.2.0",
"lodash": "^4.17.10",
"node-sass": "^4.6.0",
"normalize.css": "^8.0.0",
"postcss-loader": "^2.0.6",
"prop-types": "^15.5.10",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-icons": "^2.2.5",
"react-redux": "^5.0.6",
"react-router": "^4.1.2",
"react-router-dom": "^4.2.2",
"react-select": "^1.0.0-rc.10",
"react-test-renderer": "^16.4.1",
"react-textfit": "^1.0.1",
"react-transition-group": "^2.2.1",
"redux": "^4.0.0",
"redux-devtools-extension": "^2.13.2",
"redux-form": "^7.1.0",
"redux-saga": "^0.16.0",
"reselect": "^3.0.1",
"sass-loader": "^7.0.3",
"style-loader": "^0.21.0",
"webpack-bundle-analyzer": "^2.13.1" }, "devDependencies": {
"autoprefixer": "^9.0.1",
"axios": "^0.18.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-jest": "^23.4.0",
"babel-loader": "^7.1.5",
"babel-plugin-lodash": "^3.3.4",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2017": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"enzyme": "^3.2.0",
"enzyme-adapter-react-15": "^1.0.5",
"enzyme-to-json": "^3.2.2",
"eslint": "^5.3.0",
"eslint-loader": "^2.1.0",
"eslint-plugin-react": "^7.11.1",
"extract-text-webpack-plugin": "^3.0.0",
"hoist-non-react-statics": "^3.0.1",
"identity-obj-proxy": "^3.0.0",
"isomorphic-fetch": "^2.2.1",
"jest": "^23.4.1",
"jquery": "^3.2.1",
"lodash-webpack-plugin": "^0.11.5",
"material-design-icons": "^3.0.1",
"path": "^0.12.7",
"prettier": "^1.14.2",
"transform-runtime": "^0.0.0",
"uglifyjs-webpack-plugin": "^1.3.0",
"webpack": "^4.16.5",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.5",
"webpack-merge": "^4.1.1" },

bundle analyze result as a picture

最佳答案

我建议只导入你需要的部分/功能:

import isEmpty from 'lodash.isempty';

在你的 package.json 中

"dependencies": {
...
"lodash.foreach": "^4.5.0",
"lodash.includes": "^4.3.0",
"lodash.isempty": "^4.4.0",

关于javascript - webpack4 lodash 大小太大,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51890166/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com