How to deploy nextjs Module federation plugin to netlify & vercel

Cover Image for How to deploy nextjs Module federation plugin to netlify & vercel
Fiona Paul
Fiona Paul

Steps to install club greensock packages in netlify

  1. Add a file named .npmrc to the project root with the following contents in it:
always-auth=true
save-exact=true
@module-federation:registry=https://r.privjs.com
//r.privjs.com/:_authToken=${PRIVJS_TOKEN}

If you are running the app in the dev environment, replace ${PRIVJS_TOKEN} with the token provided to you by PrivJs

  1. Install the package using the following command:
$ npm i @module-federation/nextjs-mf

if you are using yarn package manager then you need to run:

$ yarn add @module-federation/nextjs-mf
  1. Now you need to add the PRIVJS_TOKEN value to your environment variables in netlify site settings: image

Or on Vercel site settings: image

That's it! If you face any issues, write to us at support@privjs.com and we would be happy to help you.