Public Access
1
0

feat: add Supabase-backed local lead finder app

This commit is contained in:
pguerrerox
2026-03-26 22:55:43 +00:00
commit 0e4910805a
23 changed files with 4773 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
import tailwindcss from '@tailwindcss/vite';
import react from '@vitejs/plugin-react';
import path from 'path';
import {defineConfig} from 'vite';
export default defineConfig({
plugins: [react(), tailwindcss()],
resolve: {
alias: {
'@': path.resolve(__dirname, '.'),
},
},
server: {
hmr: process.env.DISABLE_HMR !== 'true',
},
});