We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
搭建的umi3项目下 cmd 执行 yarn audit --audit-level low 即可得到umi3的组件漏洞问题,这个问题在umi4已经修复了,umi3也需要修复
The text was updated successfully, but these errors were encountered:
这个umi 升级到 4版本太坑人了,提个问题都给关闭了, 分包怎么都禁用不了,看下这个配置有啥问题吗,官方文档都是流水一文带过,禁用分包都有bug,在 umi3x 的版本有效,升级umi4x 就失效了,按照文档也无效
import { defineConfig } from "umi"; export default defineConfig({ alias: { "@": "./src", }, extraBabelPlugins: [], codeSplitting: false, legacy: { nodeModulesTransform: false, }, copy: [{ from: "./src/assets", to: "./dist/static" }], chainWebpack(config, { webpack }) { config.plugin('extract-css').use(require('mini-css-extract-plugin'), [ { filename: `main.css`, chunkFilename: `[name].chunk.css`, }, ]); config.output.filename('app.js') }, });
Sorry, something went wrong.
No branches or pull requests
The text was updated successfully, but these errors were encountered: