Jirka Svoboda
Jirka Svoboda
Nextjs rewrites should be automatically generated when `as` differs from `href`. ```js { root: 'modules/users/roots/user-view-root', // path-to-root-file rootName: 'users/view', // unique id used to find href and as' pages: [...
To be able to pass hostname and get full `href` or `as`. Example: ```ts const link = useRootLink(); // returns `/en` link.href('home'); // returns `https://www.domain.com/en` link.href('home', { hostname: 'https://www.domain.com' });...
Currently the only way of setting root specification (metaData, pages aliases, ...) is by placing all schemas into `roots.config.js`. What if there is a better way by specifying everything directly...
Fixes [#178](https://github.com/oozcitak/xmlbuilder2/issues/178) **Type of change**: - [x] Bug fix (non-breaking change which fixes an issue) - [ ] New feature (non-breaking change which adds functionality) - [ ] Breaking change...
**Describe the bug** There is a namespace misalignment when creating child element with `.ele` and when importing fragment child using `.import`. **To Reproduce** ⚙️ Try to run following functions and...