aboutsummaryrefslogtreecommitdiff
path: root/src/tools/base64-converter/index.ts
blob: 4d9b1eca714f5a5141b907f002a055bb3414ecbe (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
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.",
  keywords: ['base64', 'converter', 'upload', 'image', 'file', 'conversion', 'web', 'data', 'format'],
  component: () => import('./base64-converter.vue'),
  icon: FileDigit,
  redirectFrom: ['/file-to-base64', '/base64-string-converter'],
};