mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-05 05:47:10 -04:00
22 lines
577 B
TypeScript
22 lines
577 B
TypeScript
import { PasswordRound } from '@vicons/material';
|
|
import { defineTool } from '../tool';
|
|
import { translate } from '@/plugins/i18n.plugin';
|
|
|
|
export const tool = defineTool({
|
|
name: translate('tools.basic-auth-generator.title'),
|
|
path: '/basic-auth-generator',
|
|
description: translate('tools.basic-auth-generator.description'),
|
|
keywords: [
|
|
'basic',
|
|
'auth',
|
|
'generator',
|
|
'username',
|
|
'password',
|
|
'base64',
|
|
'authentication',
|
|
'header',
|
|
'authorization',
|
|
],
|
|
component: () => import('./basic-auth-generator.vue'),
|
|
icon: PasswordRound,
|
|
});
|