For Mac users, please replace these two lines in file package.json: from: ``` "clean": "rmdir /s /q build", "clean-prod": "rmdir /s /q distribution", ``` to: ``` "clean": "rm -rf build", "clean-prod": "rm -rf distribution", ```
For Mac users, please replace these two lines in file package.json:
from:
to: