mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2025-12-11 10:34:02 +00:00
6 lines
128 B
JavaScript
6 lines
128 B
JavaScript
module.exports = ({ onGetWebpackConfig }) => {
|
|
onGetWebpackConfig((config) => {
|
|
config.performance.hints(false);
|
|
});
|
|
};
|