mirror of
https://github.com/CorentinTh/it-tools.git
synced 2024-11-15 21:54:30 +08:00
fix(base64-file): fixed url slug
This commit is contained in:
parent
1a22d55b3c
commit
412de23796
1 changed files with 1 additions and 2 deletions
|
@ -3,10 +3,9 @@ import { defineTool } from '../tool';
|
||||||
|
|
||||||
export const tool = defineTool({
|
export const tool = defineTool({
|
||||||
name: 'Base64 file converter',
|
name: 'Base64 file converter',
|
||||||
path: '/base64-converter',
|
path: '/base64-file-converter',
|
||||||
description: "Convert string, files or images into a it's base64 representation.",
|
description: "Convert string, files or images into a it's base64 representation.",
|
||||||
keywords: ['base64', 'converter', 'upload', 'image', 'file', 'conversion', 'web', 'data', 'format'],
|
keywords: ['base64', 'converter', 'upload', 'image', 'file', 'conversion', 'web', 'data', 'format'],
|
||||||
component: () => import('./base64-file-converter.vue'),
|
component: () => import('./base64-file-converter.vue'),
|
||||||
icon: FileDigit,
|
icon: FileDigit,
|
||||||
redirectFrom: ['/file-to-base64', '/base64-string-converter'],
|
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue