Skip to content

Latest commit

 

History

History
14 lines (11 loc) · 199 Bytes

faq.md

File metadata and controls

14 lines (11 loc) · 199 Bytes

FAQ

How to solve warning "Failed to resolve component" ?

NODE_ENV must be set to production.

// package.json
{
  "scripts": {
    "start": "NODE_ENV=production node ./app.js"
  }
}