* chore: logging + transcription improvements * chore: add ax context call on rec start * chore: amical assets * chore: qol setup changes * chore: add sidebar * chore: transcriptions tab * chore: transcriptions ui * chore: frame improvements * chore: ui rework * chore logger fixes * chore: whisper model download func * chore: update model downloading * chore: transcription updates * chore: improved logging * chore: log whisper metrics + raw pcm proc * chore: ste up libsql * chore: layout fixes * chore: clean up ipcs * chore: integrate trpc * chore: formatting fixes * chroe: fix pnpm lock file * chore: clean up
20 lines
450 B
TypeScript
20 lines
450 B
TypeScript
import { defineConfig } from 'vite';
|
|
import { resolve } from 'path';
|
|
// https://vitejs.dev/config
|
|
export default defineConfig(async () => {
|
|
// @ts-ignore
|
|
const { default: tailwindcss } = await import('@tailwindcss/vite');
|
|
|
|
return {
|
|
plugins: [tailwindcss()],
|
|
publicDir: 'public',
|
|
resolve: {
|
|
alias: {
|
|
'@': resolve(__dirname, 'src'),
|
|
},
|
|
},
|
|
optimizeDeps: {
|
|
exclude: ['better-sqlite3'],
|
|
},
|
|
};
|
|
});
|