2022-07-25 18:37:14 +02:00
|
|
|
import { PasswordRound } from '@vicons/material';
|
|
|
|
import { defineTool } from '../tool';
|
2024-02-01 14:05:54 +01:00
|
|
|
import { translate } from '@/plugins/i18n.plugin';
|
2022-07-25 18:37:14 +02:00
|
|
|
|
|
|
|
export const tool = defineTool({
|
2024-02-01 14:05:54 +01:00
|
|
|
name: translate('tools.basic-auth-generator.title'),
|
2022-07-25 18:37:14 +02:00
|
|
|
path: '/basic-auth-generator',
|
2024-02-01 14:05:54 +01:00
|
|
|
description: translate('tools.basic-auth-generator.description'),
|
2022-07-25 18:37:14 +02:00
|
|
|
keywords: [
|
|
|
|
'basic',
|
|
|
|
'auth',
|
|
|
|
'generator',
|
|
|
|
'username',
|
|
|
|
'password',
|
|
|
|
'base64',
|
|
|
|
'authentication',
|
|
|
|
'header',
|
|
|
|
'authorization',
|
|
|
|
],
|
|
|
|
component: () => import('./basic-auth-generator.vue'),
|
|
|
|
icon: PasswordRound,
|
|
|
|
});
|