-
Notifications
You must be signed in to change notification settings - Fork 296
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
Example for eventsource-polyfill / IE #53
Comments
I don't have easy access to IE, so I won't be able to provide a full working example. If you have any specific errors then feel free to post more detail |
Thanks for replying. The full code is https://github.com/leiming/pcgame-react-boilerplate/tree/fix-ie Just use https://github.com/gaearon/react-transform-boilerplate and install eventsource-polyfill npm install eventsource-polyfill --save-dev and add // webpack.config.dev.js
// ...
module.exports = {
devtool: 'eval',
entry: [
'eventsource-polyfill',
'webpack-hot-middleware/client',
'./src/index'
],
// ... and the error as follow:
It is running in the virtual machine of Parallels that use IE 8 in windows 7. |
If anyone is able to contribute an example including the polyfill for IE, please do. |
@cl1ck , This code is work with IE 11, but IE 8 in Win7. |
@leiming I just add the 'event-source-polyfill' to the entry chunk and it works |
use the npm package named 'event-source-polyfill' and add this to entry chunk without any loader or plugin. |
this is ready for review |
What is? |
Lol whoops sorry wrong Issue |
I used the 'babel-polyfill' plugin, it also can't work in IE11 , but when 'npm run build',open the local index files ,it works, How strange ? |
but fo me,it doesn't work; I use the 'event-source-polyfill' as the example , I don't know where is wrong? |
Could you provide a complete example of working on IE?
I refer the #13 but it's not work.
The text was updated successfully, but these errors were encountered: