Daniel Roe
Daniel Roe
@hotrungnhan Could you explain what you have tried and what isn't working for you? Ideally via a reproduction (https://template.nuxtjs.org).
@fago Does using yarn make a difference? Search results for this error often point to permissions failures - is there anything that preinstall script is trying to do that might...
@fago We're using this helper function from Vercel: https://github.com/vercel/vercel/blob/e2db7c77347fe7698a76df8f31062b9c3b1490b4/packages/now-build-utils/src/fs/run-user-scripts.ts#L262-L301 Does that help illuminate the issue at all for you?
Yes, I think that the first option was what @didavid61202 was suggesting, and makes sense. Also very happy to include other constructed inputs alongside letter/tab, but lower/upper-case makes sense to...
@ajaydevopi SWR caching can be implemented in a number of different ways. 1. One way is client-side, using a library like [swrv](https://github.com/Kong/swrv) which I think is probably what you're interested...
Issue here is that `localhost:3000` is thought to be a protocol -> https://github.com/unjs/ufo/issues/70
https://github.com/P4sca1/nuxt-plugin-provide-types
This seems to be working fine for me using your reproduction + latest color mode + rc113. ```json "devDependencies": { "@nuxtjs/color-mode": "latest", "nuxt": "3.0.0-rc.13" } ``` Are you still experiencing...
This is a build/treeshaking issue. In the script: ```js if (dataValue) { de.setAttribute('data-' + dataValue, value) } ``` is being transformed into: ```js { de.setAttribute('data-' + dataValue, value) } ```...
Would you provide a reproduction via https://template.nuxtjs.org/? 🙏