A so called "Micro Frontend", inspired by Mekari's Frontend Architecture.
- Copy env example to their respective env file,
env.production.example
toenv.production
andenv.development.example
toenv.development
. - Run
bun run dev
to start the example apps. - Example apps consists of parent app and child app, both in their respective folder,
parent
andchild
. - Use
bun run dev --filter [app-name]
to run each project individually. - Parent app can be opened from
localhost:8080
. - Open
localhost:8080/child
to see the child app running inside the parent app. - Child app can still be opened separately from
localhost:8081
.