Horu
Horu
Hi, I'm also interest in getting this feature implemented. Can't it be guarded behind some kind if feature flag, and exit the build process if the webview engine isn't supported?
I'm clueless about why the test's failing. I'll look more into it.
@danielroe Can you help me figure out why the code hang at https://github.com/nuxt/nuxt/pull/25841/files#diff-1a6c0a2ba25b7a4a22ae30ee79885811bf4ae9f99685385027d98ad7584f117bR177? Thanks!
> see if we can implement in the universal router as well Since https://github.com/unjs/nitro/blob/7e13a51fe6cf005109fd5ab60015cb1b38380be9/src/prerender.ts#L92-L93 exists, I think it's possible.
For some reason, I cant get the middleware to run if I am using inline route rules. Error (This doesnt look related to this PR however) ```bash FAIL test/basic.test.ts [...
Changing to `url('~/public/favicon.ico')` does the trick. And shouldn't it be this way to refer to local assets/public file?
Maybe it's a good idea to add an `additionalFolders` option to copy other folders apart from standard directories. Ex: ```ts defineNuxtConfig({ extends: [ { from: "github:Atinux/content-wind-template", additionalFolders: ["content"], } ]...
https://github.com/HigherOrderLogic/nuxt-params-regex This is a prototype module I made based on this idea. Any feedback is appreciated!
> To reproduce: > > * create a page with a regex like: `pages/[status(\\d+)].vue` > * will throw `ERROR [unhandledRejection] Unfinished param "status" - at parseSegment - at generateRoutesFromFiles` >...
> Also, not sure if the `extendPages` from nuxi allows to use vue-router syntax I think it's possible since the path got passed directly to the router. See https://github.com/nuxt/nuxt/blob/main/packages/nuxt/src/pages/utils.ts#L243.