WARNING in asset size limit: The following asset(s) exceed the recommended size limit (244 KiB).

这篇具有很好参考价值的文章主要介绍了WARNING in asset size limit: The following asset(s) exceed the recommended size limit (244 KiB).。希望对大家有所帮助。如果存在错误或未考虑完全的地方,请大家不吝赐教,您也可以点击"举报违法"按钮提交疑问。

vue项目打包 报warning: asset size limit: The following asset(s) exceed the recommended size limit (244 KiB). This can impact web performance.

warning in asset size limit: the following asset(s) exceed the recommended s,vue.js,javascript,前端
这个警告的原因是因为vue的引入的js文件太大

解决方案:可以放开VUE打包大小限制

在vue项目中的vue.config.js的configureWebpack添加如下代码

configureWebpack: {
    // provide the app's title in webpack's name field, so that
    // it can be accessed in index.html to inject the correct title.
    name: name,
    resolve: {
      alias: {
        '@': resolve('src'),
      }
    },
    performance: {
      hints: 'warning',
      maxEntrypointSize: 40000000,
      // 生成文件的最大体积
      maxAssetSize: 20000000,
      assetFilter: function(assetFilename) {
        return assetFilename.endsWith('.js')
      }
    },
  },

最后再重新打包一下就好了文章来源地址https://www.toymoban.com/news/detail-776268.html

到了这里,关于WARNING in asset size limit: The following asset(s) exceed the recommended size limit (244 KiB).的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处: 如若内容造成侵权/违法违规/事实不符,请点击违法举报进行投诉反馈,一经查实,立即删除!

领支付宝红包 赞助服务器费用

相关文章

  • Plugin xxx was was not found in any of the following sources:

            最近打开AndroidStudio,经常出现如下异常:     尝试调整gradle版本,发现仍然不能解决,最后 通过降低app目录下build.gradle的  \\\"compileSdk\\\"和\\\"targetSdk\\\"版本,以及去掉buildToolsVersion解决。

    2024年02月12日
    浏览(61)
  • vivado报错 Validation Failed:User configuration exceeds BRAM count in the selected device!

    最近课设,使用vivado调用一个rom的IP,但是报错如上,从网上查阅说是FPGA的资源不够,但是我的资源量肯定是足够的,为此,不得其解,经猜测试验,最终问题是由于给的深度(下图中的Port A Depth)大于存储的数据量太多;将深度减少部分即可;  

    2024年02月14日
    浏览(46)
  • How to fix the limit of 1000 shards per cluster in ES

    Let’s first take a look at the error message in the console. The error message you’re seeing indicates that the maximum number of shards allowed in your Elasticsearch cluster has been reached. By default, Elasticsearch has a limit of 1000 shards per cluster. To fix this error, you have a few options: Increase the maximum number of shards: You can increas

    2024年02月03日
    浏览(63)
  • 新建项目下Gradle sync报错Plugin was not found in any of the following sources

    本人是新使用Android开发的新手,在看网络博客教程学习使用Android Studio,(血泪教训别轻易照着某博客去做,尽量去看视频操作教学,不然真的会出现各种千奇百怪的问题)出现了下面的问题。 我按照视频教学操作File-New project-Empty application后,Gradle sync下出现了这个问题。

    2024年02月14日
    浏览(43)
  • warning: in the working copy of ‘...‘, LF will be replaced by CRLF the next time Git touche

    执行git add .的时候出现的警告 解释: CR/LF是不同操作系统上使用的换行符: CR(CarriageReturn回车 \\\'r\\\' ):回到一行的开头,ASCII代码是13 LF(LineFeed换行\\\' n\\\' ):另起一行,ASCII代码是10 应用情况: Dos 和 Windows 平台: 使用回车(CR)和换行(LF)两个字符来结束一行,回车+换行

    2024年02月03日
    浏览(37)
  • YOLO训练产出warning: NMS time limit 1.060s exceeded原因与解决办法

    在进行模型训练结束后,模型代码会执行 对模型进行map准确率的验证,使用时候出现 talk is cheap ,show me the code. 找到warning的代码出处: 以上是NMS非极大值抑制代码实现过程,其原理也很简单,解决的是多个锚框重叠的问题。 其实原因来看,进行NMS的时间断点太长了,将阈值

    2024年02月11日
    浏览(39)
  • 【Git】warning: in the working copy of ‘...‘, LF will be replaced by CRLF the next time Git touche

    执行git add .的时候出现的警告 解释: CR/LF是不同操作系统上使用的换行符: CR(CarriageReturn回车 \\\'r\\\' ):回到一行的开头,ASCII代码是13 LF(LineFeed换行\\\' n\\\' ):另起一行,ASCII代码是10 应用情况: Dos 和 Windows 平台: 使用回车(CR)和换行(LF)两个字符来结束一行,回车+换行

    2024年01月17日
    浏览(95)
  • WARNING: Running pip as the ‘root‘ user can result in broken permissions

    解决方法如下,依次运行下面的两个代码,第一个是先验条件,第二个代码块是自己要实现的目标。

    2024年02月16日
    浏览(45)
  • Plugin [id: ‘com.android.application‘, xxx] was not found in any of the following sources

    在使用IDEA创建我的第一个Android项目时出现错误 Plugin [id: \\\'com.android.application\\\', version: \\\'7.3.0\\\', apply: false] was not found in any of the following sources: * Try: Run with --info or --debug option to get more log output. Run with --scan to get full insights. * Exception is: org.gradle.api.plugins.UnknownPluginException: Plugin [id: \\\'

    2024年02月07日
    浏览(55)
  • 出现警告warning: in the working copy of ‘gitignore‘, LF will be replaced by CRLF the next time Git解决办法

    git上传项目出现警告warning: in the working copy of ‘gitignore’, LF will be replaced by CRLF the next time Git解决 提示:这个警告是由于 Git 检测到在你的 gitignore 文件中使用的换行符 (line endings)是 LF(Unix 风格)而非 CRLF (Windows 风格)导致的。Git 会自动将 LF 换为 CRLF 以符合你的操作系统的标准。

    2024年02月05日
    浏览(47)

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

博客赞助

微信扫一扫打赏

请作者喝杯咖啡吧~博客赞助

支付宝扫一扫领取红包,优惠每天领

二维码1

领取红包

二维码2

领红包