Vue 3: disable renaming CSS properties from "top/bottom/left/right" to "inset"
Vue (or maybe Vite) automatically converts my css style from "top: 0; right: 0; left: 0; bottom: 0;" to "inset: 0px;" Since I need to support older browsers, where inset is not available, this results in a bug. I need…