-
Notifications
You must be signed in to change notification settings - Fork 211
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
create-wasm-app won't run on node 18 on windows #279
Comments
Same problem here. |
This pull request adds a hint to a solution for this while keeping a newer version of node. The suggestion is to add a {
...
"scripts": {
...
"start": "NODE_OPTIONS=--openssl-legacy-provider webpack-dev-server"
},
...
} |
If you want to change the environment variable on Windows you can run this command in the terminal before running $env:NODE_OPTIONS="--openssl-legacy-provider" Edit: alternative solution |
Same issue on macos. Downgrading to node 16 works. |
as it is, it won't run thanks to very outdated dependencies. Maybe simply don't use the bundler at all?
The text was updated successfully, but these errors were encountered: