Jon Price

Results 3 comments of Jon Price

Same issue here: ``` GET http://localhost:3000/search-index.json 404 (Not Found) ```

I was able to narrow the issue down to having `routeBasePath: '/'` set in `@docusaurus/preset-classic` config, but also needed to set `docsRouteBasePath: '/',` to match since I'm running in docs...

@kaushal0107 sure, hope this helps :) Using `routeBasePath` in `@docusaurus/preset-classic` config: ``` presets: [ [ 'classic', /** @type {import('@docusaurus/preset-classic').Options} */ ({ docs: { routeBasePath: '/', ... }, }), ], ],...