remade app in ionic

This commit is contained in:
metacryst
2025-11-13 18:55:42 -06:00
parent cf03c95664
commit d160182127
161 changed files with 4240 additions and 5284 deletions

14
vite.config.ts Normal file
View File

@@ -0,0 +1,14 @@
import { defineConfig } from 'vite';
export default defineConfig({
root: './src',
build: {
outDir: '../dist',
minify: false,
emptyOutDir: true,
},
server: {
host: true,
allowedHosts: ['sam.local'],
}
});