amical/apps/electron/vite.preload.config.mts
Haritabh 9787240896
vite.build.fixes (#12)
* chore: add swift helper

* chore: separate out types into types pkg

* chore: only build apps/www for now

* chore: don't build swift helper as part of pnpm i

* chore: fix system audio mute and restore + resources embedding

* chore: resolve merge conflicts
2025-05-25 16:33:39 +05:30

11 lines
209 B
TypeScript

import { defineConfig } from 'vite';
import { resolve } from 'path';
// https://vitejs.dev/config
export default defineConfig({
resolve: {
alias: {
'@': resolve(__dirname, 'src'),
},
},
});