Files
adiuvAI/vite.renderer.config.mts
Roberto 2caea8e21d rebrand: Adiuva → adiuvAI with new compass logo
Replace generic star icon and "Adiuva" text with new compass mark and
"adiuvAI" wordmark across sidebar, login form, and AI chat header.
Add app icon (PNG/ICO) and configure Forge packager and BrowserWindow.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-08 15:26:44 +02:00

25 lines
670 B
TypeScript

import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
import tailwindcss from '@tailwindcss/vite';
import { TanStackRouterVite } from '@tanstack/router-vite-plugin';
import path from 'path';
// https://vitejs.dev/config
export default defineConfig({
publicDir: path.resolve(__dirname, 'assets'),
plugins: [
tailwindcss(),
react(),
TanStackRouterVite({
routesDirectory: './src/renderer/routes',
generatedRouteTree: './src/renderer/routeTree.gen.ts',
}),
],
resolve: {
alias: {
'@': path.resolve(__dirname, './src/renderer'),
'@shared': path.resolve(__dirname, './src/shared'),
},
},
});