瀏覽代碼

disable webpack's size warnings (#10746)

Co-authored-by: techknowlogick <techknowlogick@gitea.io>
tags/v1.13.0-dev
silverwind 4 年之前
父節點
當前提交
ed5140d235
沒有連結到貢獻者的電子郵件帳戶。
共有 1 個檔案被更改,包括 1 行新增8 行删除
  1. 1
    8
      webpack.config.js

+ 1
- 8
webpack.config.js 查看文件

@@ -202,14 +202,7 @@ module.exports = {
]),
],
performance: {
hints: isProduction ? 'warning' : false,
maxEntrypointSize: 512000,
maxAssetSize: 512000,
assetFilter: (filename) => {
if (filename.endsWith('.map')) return false;
if (['js/swagger.js', 'js/highlight.js', 'fomantic/semantic.min.css'].includes(filename)) return false;
return true;
},
hints: false,
},
resolve: {
symlinks: false,

Loading…
取消
儲存