Samuel Muiruri
Samuel Muiruri

Reputation: 522

Unable to load required framework: ext@null in extjs

Setting up extjs and sencha when I ran the app I get error unable to load required framework

root@samuel-pc:~/Documents/code/test# sencha app watch
Sencha Cmd v6.5.0.180
[ERR] Unable to load required framework: ext@null

Upvotes: 6

Views: 6292

Answers (1)

Parham Alvani
Parham Alvani

Reputation: 2440

First of all you must create workspace.json with sencha workspace init then add your frameworks into workspace.json like:

"frameworks": {
  "ext": {
    "path": "ext"
  }
}

after that you can run sencha app install in order to install requirements and then you can run sencha app build and ...

Upvotes: 7

Related Questions