2022-04-14 02:30:25 +02:00
|
|
|
import { FileDigit } from '@vicons/tabler';
|
|
|
|
import type { ITool } from './../Tool';
|
|
|
|
|
|
|
|
export const tool: ITool = {
|
|
|
|
name: 'Base64 converter',
|
|
|
|
path: '/base64-converter',
|
|
|
|
description: "Convert string, files or images into a it's base64 representation.",
|
2022-05-09 14:38:54 +02:00
|
|
|
keywords: ['base64', 'converter', 'upload', 'image', 'file', 'conversion', 'web', 'data', 'format'],
|
2022-04-14 02:30:25 +02:00
|
|
|
component: () => import('./base64-converter.vue'),
|
|
|
|
icon: FileDigit,
|
2022-04-16 10:10:21 +02:00
|
|
|
redirectFrom: ['/file-to-base64', '/base64-string-converter'],
|
2022-04-14 02:30:25 +02:00
|
|
|
};
|