1.Component is not found in path
The correct path should like this: /components/item/item
2.Error: Expect FLOW_CREATE_NODE but get another
You should set up a correct path in json file
Exemple:
- Component item.json
{
"component": true,
"usingComponents": {
"item": "/components/item/item"
}
}
- Page index.json
{
"usingComponents": {
"item": "/components/item/item"
}
}