-
Notifications
You must be signed in to change notification settings - Fork 71
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add IE11 support recipe #245
Comments
Kevin Frey has provided some information to help:
|
While working with webpack 5 and the changes shown above i noticed that hot module replacement is broken. I checked the error message and found the following post referring to this comment. So by expanding // more context
module.exports = {
// ..
optimization: {
splitChunks: {
chunks: 'all'
},
runtimeChunk: "single"
},
// ..
} |
Not sure when exactly this broke down. But these steps are not longer able to provide ie 11 compatibility with the newest SAFE stack version. |
@Freymaurer Is this still an issue you're seeing (i.e. requirement) given that it's not even supported by Microsoft any longer? |
I understand this is an edge case. I used this for an excel add-in. Excel 2019 still uses ie11 as in app browser. |
Closing this as end of life of Internet Explorer was 15 June 2022 - https://www.microsoft.com/en-US/download/details.aspx?id=41628 |
Babel is no longer part of the default template from
dotnet new safe
. This made npm and webpack maintenance easier, but means that the client is no longer compatible with Internet Explorer. Add a recipe that explains how to add IE11 support back.Relates to SAFE-Stack/SAFE-template#415 (comment).
The text was updated successfully, but these errors were encountered: