-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
when i npm run dev i find in ios safari and not can open my project #1511
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
Comments
It seems when you bundle your application a tool like e.g |
Updated to at least |
Either
const a = 42
'use strict'; // <= added by babel
var a = 42; yet you exlude the
import dep from 'pkg'
const a = 42
'use strict'; // <= added by babel
// import dep from 'pkg' (not transpiled)
const dep = true // <= {Error}
var a = 42; |
Uh oh!
There was an error while loading. Please reload this page.
This is a bug
when i npm run dev i find in ios safari and not can open my project
and also find
SyntaxError: Unexpected keyword 'const'. Const declarations are not supported in strict mode.
/app.js:57856:0
and i search when webpack-dev-server version up 2.7.1 some people have report this problem
so i install webpack-dev-server version is 2.7.1 but no use so i need how to slove this problem
but in iphone mobile it will can open but in PC it is not use
This is a modification request
Code
// webpack.config.js
// additional code, remove if not needed.
Expected Behavior
Actual Behavior
For Bugs; How can we reproduce the behavior?
For Features; What is the motivation and/or use-case for the feature?
The text was updated successfully, but these errors were encountered: