Skip to content
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

Closed
mattgallagher92 opened this issue Nov 30, 2021 · 6 comments
Closed

Add IE11 support recipe #245

mattgallagher92 opened this issue Nov 30, 2021 · 6 comments

Comments

@mattgallagher92
Copy link
Member

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).

@mattgallagher92
Copy link
Member Author

Kevin Frey has provided some information to help:

@Freymaurer
Copy link

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 optimization with runtimeChunk: "single" it works again.

// more context
module.exports = {
    // ..
    optimization: {
        splitChunks: {
            chunks: 'all'
        },
        runtimeChunk: "single"
    },
    // ..
}

@Freymaurer
Copy link

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.

@isaacabraham
Copy link
Member

@Freymaurer Is this still an issue you're seeing (i.e. requirement) given that it's not even supported by Microsoft any longer?

@Freymaurer
Copy link

I understand this is an edge case. I used this for an excel add-in. Excel 2019 still uses ie11 as in app browser.

@martinbryant
Copy link
Member

Closing this as end of life of Internet Explorer was 15 June 2022 - https://www.microsoft.com/en-US/download/details.aspx?id=41628

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants