You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After using this template successfully and deploying to IIS, I realized that the upload to my server was ~100MB. 99% of that bulk was due to the node_modules being included in the publish.
It does need to be included if you're using a file-based deployment method (VSTS, or maybe just FTP), because node_modules does have to be present on the server for server-side prerendering to run.
However, if your deployment mechanism automatically does an npm install for you (e.g., when deploying via Git to Azure), then you don't need to include node_modules because the deployment system will recreate it on the server.
So, it does need to be in the template for people using VSTS/FTP/etc.
After using this template successfully and deploying to IIS, I realized that the upload to my server was ~100MB. 99% of that bulk was due to the node_modules being included in the publish.
I am not sure if this directory actually needs to be included. But if not, taking that out would be ideal.
The text was updated successfully, but these errors were encountered: