Closed dinwwwh closed 7 months ago
It work
{ path: 'docs/:category/:name', lazy: () => import('./pages/doc-detail'), entry: './pages/doc-detail.tsx', getStaticPaths() { return docs.map((doc) => 'docs/' + doc.relativePath) }, },
But it does not work
{ path: 'docs/*', lazy: () => import('./pages/doc-detail'), entry: './pages/doc-detail.tsx', getStaticPaths() { return docs.map((doc) => 'docs/' + doc.relativePath) }, },
Hi @dinsterizer , thank you for pointing out this issue! Now, you can use star segments in version v0.6.1.
If you have any questions or suggestions, please let me know. ❤️
It work
But it does not work