-
Notifications
You must be signed in to change notification settings - Fork 88
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
How to make it work on windows. [Solution] #3
Comments
Hi, how to test the software in local? Which is the enviroment? |
Hello, directly opening the file with a browser won't work since it's meant to be run using parcel which was already installed in my system but you might want to install it too if the below solution doesn't help. |
ohhh in my json the & is missing! SET NODE_ENV=development & parcel --no-hmr --open index.html when will be ok, parcel will listen on http://localhost:1234/, right? |
Yes, now you should be facing this issue. |
I want to point out a small fix which windows users must apply in order to run the program. Some of you might already know this but it made me stumble for quite a while.
The original
demos/package.json
is written for MAC so trying to run it produces the following error:'NODE_ENV' is not recognized as an internal or external command, operable program or batch file.
In order to fix it, replace the
"scripts"
block insidedemos/package.json
with the following:The text was updated successfully, but these errors were encountered: