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
}
}
}
})