If i write for example a node express app, i have the opportunity to pass some env vars from the server configuration.
Is there an opportunity in SharePoint Online also? As SharePoint Online is a managed service, there's imho no way to do so.
Is there possibly a workaround?
I stuck at creating any idea regarding this problem.
cheers Thomas
Just as an option, you can use property bag (like, site property bag) to define custom properties for a site, and then get them from your SPFx web part. You have property bags for many things in SharePoint, including tenant, site, list, etc.
To set a property bag key/value for a site (powershell):
To get this "site" value from an SPFx web part, you can use the
allProperties
API (somewhere in your web part initialization):The same code if you are not using pnpjs:
Alternatively, you can just put the .env file (to site assets for example) and then read it from your SPFx web part.
Not sure if this is common practice in any way (probably not), but just to give some options.