renaming app directory

This commit is contained in:
2025-02-23 14:55:13 -06:00
parent 5f26c48aba
commit e3f20617e9
43 changed files with 3 additions and 3 deletions

16
app/vite.config.ts Normal file
View File

@@ -0,0 +1,16 @@
import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
// https://vitejs.dev/config/
export default defineConfig({
plugins: [react()],
preview: {
port: 8080,
strictPort: true
},
server: {
port: 8080,
strictPort: true,
host: '0.0.0.0'
}
});