2022-05-09 17:41:42 +02:00
|
|
|
import { Braces } from '@vicons/tabler';
|
2022-06-01 23:52:21 +02:00
|
|
|
import { defineTool } from '../tool';
|
2022-05-09 17:41:42 +02:00
|
|
|
|
2022-06-01 23:52:21 +02:00
|
|
|
export const tool = defineTool({
|
2022-07-24 15:10:38 +02:00
|
|
|
name: 'JSON prettify and format',
|
|
|
|
path: '/json-prettify',
|
|
|
|
description: 'Prettify your JSON string to a human friendly readable format.',
|
2022-05-09 17:41:42 +02:00
|
|
|
keywords: ['json', 'viewer', 'prettify', 'format'],
|
|
|
|
component: () => import('./json-viewer.vue'),
|
|
|
|
icon: Braces,
|
2022-07-24 15:10:38 +02:00
|
|
|
redirectFrom: ['/json-viewer'],
|
2022-06-01 23:52:21 +02:00
|
|
|
});
|