Daniel Roe

Results 1868 comments of Daniel Roe

This seems like an issue in `unimport` rather than this module.

added a workaround but we still need to address in unimport... (cc: @antfu)

@addyosmani I'd suggest using Vuex only if that suits the app needs (truly global, app-wide state). The Nuxt integration is pretty seamless, but I feel best practice is moving more...

You can set up a GitHub Actions workflow that triggers on Vercel deployments - it will receive the unique preview URL from Vercel and you can then run lhci (via...

I was responding particularly to this line in your previous comment: > And the other one is that it seems like Lighthouse CI would run locally rather than against the...

@anton-karlovskiy I would personally only put reset CSS in a global CSS context. I would put other classes in the components that use them - or use CSS modules to...

@anton-karlovskiy Likely will be fixed with `serverFiles` builder configuration - just add the file it can't find to the array (see builder documentation). Also happy to help if added to...

Docs are here with snippet: https://github.com/nuxt/vercel-builder#serverfiles Just add the file/folder it's complaining about. ```json { "builds": [ { "src": "nuxt.config.js", "use": "@nuxtjs/vercel-builder", "config": { "serverFiles": ["utils/**"] } } ] }...

@anton-karlovskiy I think that's a good idea, and that it should be integrated into nuxt/image. Individual providers could register their own preconnects, etc. Not sure if it's on the roadmap,...

You could use this module: https://github.com/nuxt-community/device-module Or render both components and selectively hydrate based on screen size on client side using https://github.com/maoberlehner/vue-lazy-hydration