diff options
author | 2022-07-25 23:31:06 +0200 | |
---|---|---|
committer | 2022-07-25 23:31:06 +0200 | |
commit | 412de23796babbc080b0768a75029ff2ddf2acfc (patch) | |
tree | 52d3d0f9250c3d62d7139e9d87581d3057242840 /src | |
parent | 1a22d55b3c48f58b05b5a50de4fea260e781fbef (diff) | |
download | it-tools-412de23796babbc080b0768a75029ff2ddf2acfc.tar.gz it-tools-412de23796babbc080b0768a75029ff2ddf2acfc.tar.zst it-tools-412de23796babbc080b0768a75029ff2ddf2acfc.zip |
fix(base64-file): fixed url slug
Diffstat (limited to 'src')
-rw-r--r-- | src/tools/base64-file-converter/index.ts | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/tools/base64-file-converter/index.ts b/src/tools/base64-file-converter/index.ts index ba312ec..2d93d02 100644 --- a/src/tools/base64-file-converter/index.ts +++ b/src/tools/base64-file-converter/index.ts @@ -3,10 +3,9 @@ import { defineTool } from '../tool'; export const tool = defineTool({ name: 'Base64 file converter', - path: '/base64-converter', + path: '/base64-file-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-file-converter.vue'), icon: FileDigit, - redirectFrom: ['/file-to-base64', '/base64-string-converter'], }); |