OfficeDev / msteams-meetings-template

Template for an app that creates Microsoft Teams meetings
MIT License
61 stars 49 forks source link

Using webpack 5 #40

Open ewpreston opened 2 years ago

ewpreston commented 2 years ago

In translate.ts is this line of code:

const sku = process?.env?.REACT_APP_SKU ?? 'edu';

and I'm trying to upgrade to webpack 5 locally (we have a copy of this code since we had to customize it for Blackboard).

process is a Node variable, so how does this work in a React app that runs in the browser?