Sharkey/packages/frontend
dakkar 8b1a0f1226 replace URL path for inlined SearchMarkers - fixes #1154
The search index looks like:

```ts
[
 {
   id: 'foo', label: 'security',
   path: '/settings/security', inlining: ['2fa'],
 },
 {
   id: '2fa',
   label: 'two-factor auth',
   path: '/settings/2fa', // guessed wrong by the index generation
 },
 {
   id: 'aaaa',
   parentId: '2fa',
   label: 'totp',
 },
 …
]
```

This file post-processes that index and re-parents the inlined
sections. Problem was, it left the (wrong) `path` untouched.

Replacing the `path` makes the search work fine.
2025-07-17 16:36:50 +01:00
..
.storybook
.vscode
@types
assets
lib
public
src replace URL path for inlined SearchMarkers - fixes #1154 2025-07-17 16:36:50 +01:00
test
.gitignore
eslint.config.js
package.json Merge branch 'develop' into upstream/2025.5.0 2025-06-20 10:44:34 +01:00
tsconfig.json Merge branch 'develop' into upstream/2025.5.0 2025-06-10 14:02:32 +01:00
vite.config.ts
vite.json5.ts
vite.replaceIcons.ts
vue-shims.d.ts