| title | Development Guide |
|---|
- Create a new folder in
/apps. - Scaffold a new Vue 3 + Vite app (see existing apps for structure).
- Configure
vite.config.jsfor module federation. - Register the app in the workspace and update any shared config if needed.
- Place shared code in
/packages(e.g., UI components, config). - Import shared code using workspace aliases.
- Run multiple apps in parallel for integration testing.
- Use Vitest for unit/integration tests.
- Follow coding standards and UI guidelines.
- Vite provides fast HMR for all apps.
See Testing for test instructions.