Maximiliano Arias
Maximiliano Arias
> I was able to solve the issue by switching to [rollup-plugin-vue2](https://github.com/thgh/rollup-plugin-vue2) Fucking hell, HOURS wasted. This fixed it for me. If you're getting errors like "x" was not found...
Any updates on this? Any alternative library?
Appreciate your work here @VariableVic ! I'll keep an eye out for the article.
Anyone have a workaround for the client? From what I can gather most of these workarounds only affect the server/TTFB. Unless Im wrong?
I came across the same issue, I shimmed it by doing: ``` import { ComponentCustomProperties } from 'vue'; type Device = { userAgent: string; isDesktop: boolean; isIos: boolean; isAndroid: boolean;...