Is there a way to exclude certain classes from being tree-shaken? The reason I ask is that in my JavaScript I'm using an arbitrary-value e.g. bg-[url('/img/hero-pattern.svg')] but the url is passed via a Vue computed property e.g.
`bg-[url('${this.image}')]`
I don't think this is being recognised, although I'm not certain.
I'm aware of how to use tailwind.config.js with the purge option, and the issue does not seem to be there, because other classes in the Vue component are included.
I'm using the mode: 'jit' option to allow arbitrary values.