diff options
Diffstat (limited to 'src/tools/json-viewer/index.ts')
-rw-r--r-- | src/tools/json-viewer/index.ts | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/tools/json-viewer/index.ts b/src/tools/json-viewer/index.ts index 23f1b8a..6b5b881 100644 --- a/src/tools/json-viewer/index.ts +++ b/src/tools/json-viewer/index.ts @@ -2,10 +2,11 @@ import { Braces } from '@vicons/tabler'; import { defineTool } from '../tool'; export const tool = defineTool({ - name: 'JSON viewer', - path: '/json-viewer', - description: 'Prettify JSON string to a human friendly readable format.', + name: 'JSON prettify and format', + path: '/json-prettify', + description: 'Prettify your JSON string to a human friendly readable format.', keywords: ['json', 'viewer', 'prettify', 'format'], component: () => import('./json-viewer.vue'), icon: Braces, + redirectFrom: ['/json-viewer'], }); |