React+Vite app that generates Ed25519 and RSA SSH keys entirely in the browser using Web Crypto API and micro-key-producer. Styled with Tailwind CSS v4 dark theme. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
9 lines
209 B
JavaScript
9 lines
209 B
JavaScript
import { defineConfig } from 'vite'
|
|
import react from '@vitejs/plugin-react'
|
|
import tailwindcss from '@tailwindcss/vite'
|
|
|
|
export default defineConfig({
|
|
plugins: [react(), tailwindcss()],
|
|
base: '/ssh/',
|
|
})
|