refactor(json-prettify): improved layout for the json prettifier

This commit is contained in:
Corentin Thomasset 2022-07-24 15:10:38 +02:00
parent ba87097e3d
commit 328fda65b3
No known key found for this signature in database
GPG key ID: DBD997E935996158
2 changed files with 44 additions and 37 deletions

View file

@ -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'],
});