I noticed that Vue (or maybe Vite) automatically changes my css style attributes from "top: 0; right: 0; left: 0; bottom: 0;" to "inset: 0px;"
However, this adaptation doesn't work well for older browsers that do not support the inset property, causing a bug in the design.
To resolve this issue, I attempted to define the styles explicitly like so:
:style="'top: 0; right: 0;' + 'left: 0; bottom: 0;'"
Unfortunately, it still gets converted to inset despite my efforts.
Additionally, I have specified the following configuration in my vite.config.ts file:
build: {
target: 'es2015'
}
My expectation was to maintain the styles exactly as I input them without any automatic conversions.