Files
crowd-funder-from-jason/src/main.web.ts
Matthew Raymer e5518cd47c fix: update Vue template syntax and improve Vite config
- Fix Vue template syntax in App.vue by using proper event handler format
- Update Vite config to properly handle ESM imports and crypto modules
- Add manual chunks for better code splitting
- Improve environment variable handling in vite-env.d.ts
- Fix TypeScript linting errors in App.vue
2025-04-18 09:59:33 +00:00

6 lines
145 B
TypeScript

import { initializeApp } from './main.common'
import './registerServiceWorker' // Web PWA support
const app = initializeApp()
app.mount('#app')