Deprecation Warning: Passing percentage units to the global abs() function is deprecated

Deprecation Warning: Passing percentage units to the global abs() function is deprecated这个错误是在使用Bootstrap编译的时候出现的,原因是sass对bootstrap中的一个写法的提示警告,将sass版本改为1.64.2即可。还有一种方法就是隐藏警告:

// To hide the warnings, update your vite.config.js like this:

export default defineConfig({
  css: {
    preprocessorOptions: {
      scss: {
        quietDeps: true
      }
    }
  }
})
本条目发布于。属于软件分类。作者是

关于有个狸

2005年开始的一名站长,从事网站策划、运营,早期一批扎根阿里妈妈、Google Adsense的一员,目前司职前端与产品设计。

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注