Skip to content

Latest commit

 

History

History
25 lines (19 loc) · 844 Bytes

File metadata and controls

25 lines (19 loc) · 844 Bytes
title Development Guide

Development Guide

Adding a New Micro-Frontend

  1. Create a new folder in /apps.
  2. Scaffold a new Vue 3 + Vite app (see existing apps for structure).
  3. Configure vite.config.js for module federation.
  4. Register the app in the workspace and update any shared config if needed.

Shared Packages

  • Place shared code in /packages (e.g., UI components, config).
  • Import shared code using workspace aliases.

Local Development Tips

Hot Reloading

  • Vite provides fast HMR for all apps.

See Testing for test instructions.