├── .gitignore ├── README.md ├── micro-front-end-activate ├── .gitignore ├── README.md ├── components │ └── mario.js ├── next.config.js ├── package-lock.json ├── package.json ├── pages │ ├── _app.js │ └── index.js ├── public │ ├── favicon.ico │ └── vercel.svg ├── styles │ ├── Home.module.css │ ├── Mario.module.css │ └── globals.css └── yarn.lock ├── micro-front-end-main ├── .gitignore ├── README.md ├── components │ └── luigi.js ├── next.config.js ├── package-lock.json ├── package.json ├── pages │ ├── _app.js │ └── index.js ├── public │ ├── favicon.ico │ └── vercel.svg ├── styles │ ├── Home.module.css │ ├── Luigi.module.css │ └── globals.css └── yarn.lock ├── micro-front-end-shell ├── .gitignore ├── README.md ├── components │ └── nav.js ├── next.config.js ├── package-lock.json ├── package.json ├── pages │ ├── _app.js │ ├── _document.js │ ├── index.js │ ├── luigi.js │ └── mario.js ├── public │ ├── favicon.ico │ └── vercel.svg ├── styles │ ├── Home.module.css │ ├── Nav.module.css │ └── globals.css └── yarn.lock └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/nextjs-micro-frontends/HEAD/README.md -------------------------------------------------------------------------------- /micro-front-end-activate/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/nextjs-micro-frontends/HEAD/micro-front-end-activate/.gitignore -------------------------------------------------------------------------------- /micro-front-end-activate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/nextjs-micro-frontends/HEAD/micro-front-end-activate/README.md -------------------------------------------------------------------------------- /micro-front-end-activate/components/mario.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/nextjs-micro-frontends/HEAD/micro-front-end-activate/components/mario.js -------------------------------------------------------------------------------- /micro-front-end-activate/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/nextjs-micro-frontends/HEAD/micro-front-end-activate/next.config.js -------------------------------------------------------------------------------- /micro-front-end-activate/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/nextjs-micro-frontends/HEAD/micro-front-end-activate/package-lock.json -------------------------------------------------------------------------------- /micro-front-end-activate/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/nextjs-micro-frontends/HEAD/micro-front-end-activate/package.json -------------------------------------------------------------------------------- /micro-front-end-activate/pages/_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/nextjs-micro-frontends/HEAD/micro-front-end-activate/pages/_app.js -------------------------------------------------------------------------------- /micro-front-end-activate/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/nextjs-micro-frontends/HEAD/micro-front-end-activate/pages/index.js -------------------------------------------------------------------------------- /micro-front-end-activate/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/nextjs-micro-frontends/HEAD/micro-front-end-activate/public/favicon.ico -------------------------------------------------------------------------------- /micro-front-end-activate/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/nextjs-micro-frontends/HEAD/micro-front-end-activate/public/vercel.svg -------------------------------------------------------------------------------- /micro-front-end-activate/styles/Home.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/nextjs-micro-frontends/HEAD/micro-front-end-activate/styles/Home.module.css -------------------------------------------------------------------------------- /micro-front-end-activate/styles/Mario.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/nextjs-micro-frontends/HEAD/micro-front-end-activate/styles/Mario.module.css -------------------------------------------------------------------------------- /micro-front-end-activate/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/nextjs-micro-frontends/HEAD/micro-front-end-activate/styles/globals.css -------------------------------------------------------------------------------- /micro-front-end-activate/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/nextjs-micro-frontends/HEAD/micro-front-end-activate/yarn.lock -------------------------------------------------------------------------------- /micro-front-end-main/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/nextjs-micro-frontends/HEAD/micro-front-end-main/.gitignore -------------------------------------------------------------------------------- /micro-front-end-main/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/nextjs-micro-frontends/HEAD/micro-front-end-main/README.md -------------------------------------------------------------------------------- /micro-front-end-main/components/luigi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/nextjs-micro-frontends/HEAD/micro-front-end-main/components/luigi.js -------------------------------------------------------------------------------- /micro-front-end-main/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/nextjs-micro-frontends/HEAD/micro-front-end-main/next.config.js -------------------------------------------------------------------------------- /micro-front-end-main/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/nextjs-micro-frontends/HEAD/micro-front-end-main/package-lock.json -------------------------------------------------------------------------------- /micro-front-end-main/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/nextjs-micro-frontends/HEAD/micro-front-end-main/package.json -------------------------------------------------------------------------------- /micro-front-end-main/pages/_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/nextjs-micro-frontends/HEAD/micro-front-end-main/pages/_app.js -------------------------------------------------------------------------------- /micro-front-end-main/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/nextjs-micro-frontends/HEAD/micro-front-end-main/pages/index.js -------------------------------------------------------------------------------- /micro-front-end-main/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/nextjs-micro-frontends/HEAD/micro-front-end-main/public/favicon.ico -------------------------------------------------------------------------------- /micro-front-end-main/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/nextjs-micro-frontends/HEAD/micro-front-end-main/public/vercel.svg -------------------------------------------------------------------------------- /micro-front-end-main/styles/Home.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/nextjs-micro-frontends/HEAD/micro-front-end-main/styles/Home.module.css -------------------------------------------------------------------------------- /micro-front-end-main/styles/Luigi.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/nextjs-micro-frontends/HEAD/micro-front-end-main/styles/Luigi.module.css -------------------------------------------------------------------------------- /micro-front-end-main/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/nextjs-micro-frontends/HEAD/micro-front-end-main/styles/globals.css -------------------------------------------------------------------------------- /micro-front-end-main/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/nextjs-micro-frontends/HEAD/micro-front-end-main/yarn.lock -------------------------------------------------------------------------------- /micro-front-end-shell/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/nextjs-micro-frontends/HEAD/micro-front-end-shell/.gitignore -------------------------------------------------------------------------------- /micro-front-end-shell/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/nextjs-micro-frontends/HEAD/micro-front-end-shell/README.md -------------------------------------------------------------------------------- /micro-front-end-shell/components/nav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/nextjs-micro-frontends/HEAD/micro-front-end-shell/components/nav.js -------------------------------------------------------------------------------- /micro-front-end-shell/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/nextjs-micro-frontends/HEAD/micro-front-end-shell/next.config.js -------------------------------------------------------------------------------- /micro-front-end-shell/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/nextjs-micro-frontends/HEAD/micro-front-end-shell/package-lock.json -------------------------------------------------------------------------------- /micro-front-end-shell/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/nextjs-micro-frontends/HEAD/micro-front-end-shell/package.json -------------------------------------------------------------------------------- /micro-front-end-shell/pages/_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/nextjs-micro-frontends/HEAD/micro-front-end-shell/pages/_app.js -------------------------------------------------------------------------------- /micro-front-end-shell/pages/_document.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/nextjs-micro-frontends/HEAD/micro-front-end-shell/pages/_document.js -------------------------------------------------------------------------------- /micro-front-end-shell/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/nextjs-micro-frontends/HEAD/micro-front-end-shell/pages/index.js -------------------------------------------------------------------------------- /micro-front-end-shell/pages/luigi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/nextjs-micro-frontends/HEAD/micro-front-end-shell/pages/luigi.js -------------------------------------------------------------------------------- /micro-front-end-shell/pages/mario.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/nextjs-micro-frontends/HEAD/micro-front-end-shell/pages/mario.js -------------------------------------------------------------------------------- /micro-front-end-shell/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/nextjs-micro-frontends/HEAD/micro-front-end-shell/public/favicon.ico -------------------------------------------------------------------------------- /micro-front-end-shell/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/nextjs-micro-frontends/HEAD/micro-front-end-shell/public/vercel.svg -------------------------------------------------------------------------------- /micro-front-end-shell/styles/Home.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/nextjs-micro-frontends/HEAD/micro-front-end-shell/styles/Home.module.css -------------------------------------------------------------------------------- /micro-front-end-shell/styles/Nav.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/nextjs-micro-frontends/HEAD/micro-front-end-shell/styles/Nav.module.css -------------------------------------------------------------------------------- /micro-front-end-shell/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/nextjs-micro-frontends/HEAD/micro-front-end-shell/styles/globals.css -------------------------------------------------------------------------------- /micro-front-end-shell/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/nextjs-micro-frontends/HEAD/micro-front-end-shell/yarn.lock -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkssharma/nextjs-micro-frontends/HEAD/package.json --------------------------------------------------------------------------------