We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
create-react-app is not working in development mode in Microsoft Edge. Production build works.
Environment Info:
current version of create-react-app: 3.3.1 running from C:\Users\olexi\AppData\Roaming\npm-cache_npx\2716\node_modules\create-react-app
System: OS: Windows 10 10.0.18363 CPU: (8) x64 Intel(R) Core(TM) i5-8265U CPU @ 1.60GHz Binaries: Node: 10.15.3 - C:\Program Files\nodejs\node.EXE Yarn: 1.15.2 - ~\AppData\Roaming\npm\yarn.CMD npm: 6.4.1 - C:\Program Files\nodejs\npm.CMD Browsers: Edge: 44.18362.449.0 Internet Explorer: Not Found npmPackages: react: ^16.12.0 => 16.12.0 react-dom: ^16.12.0 => 16.12.0 react-scripts: 3.3.1 => 3.3.1 npmGlobalPackages: create-react-app: Not Found
npx create-react-app my-app
I see starting application page.
Browser shows blank page. Console shows this error: "SCRIPT1028: SCRIPT1028: Expected identifier, string or number".
The text was updated successfully, but these errors were encountered:
Same issue here! Apparently Edge does not support the spread operator
Mie problem is pointing at
const proto = Object.defineProperties(() => {}, { ...styles, level: { enumerable: true, get() { return this._generator.level; }, set(level) { this._generator.level = level; } } });
Sorry, something went wrong.
Yep, exactly same line of code.
It looks like Microsoft Edge is not supporting spread operator for objects. Arrays have no problems.
Looks like, it is related with #8439.
Fixed with 3.4.0
No branches or pull requests
Describe the bug
create-react-app is not working in development mode in Microsoft Edge. Production build works.
Environment
Environment Info:
current version of create-react-app: 3.3.1
running from C:\Users\olexi\AppData\Roaming\npm-cache_npx\2716\node_modules\create-react-app
Steps to reproduce
npx create-react-app my-app
Expected behavior
I see starting application page.
Actual behavior
Browser shows blank page.

Console shows this error: "SCRIPT1028: SCRIPT1028: Expected identifier, string or number".
The text was updated successfully, but these errors were encountered: