strapi-starter-react-blog icon indicating copy to clipboard operation
strapi-starter-react-blog copied to clipboard

"yarn develop --watch-admin" doesn't work for backend

Open ikkev opened this issue 4 years ago • 3 comments

node version v12.16.1 yarn version 1.22.4

how to reproduce

git clone https://github.com/strapi/strapi-starter-react-blog.git
cd strapi-starter-react-blog
cd backend
yarn
yarn develop --watch-admin

what happens

duplicate packages warnings:

 WARNING  Compiled with 3 warnings                                                                                                                                                                                                  

 warning  

@babel/runtime
  Multiple versions of @babel/runtime found:
    7.10.1 ./~/dom-helpers/~/@babel/runtime from ./~/dom-helpers/cjs/addClass.js
    7.7.7 ./~/@babel/runtime from ./~/@babel/runtime/helpers/slicedToArray.js


 warning  

dom-helpers
  Multiple versions of dom-helpers found:
    5.1.3 ./~/react-virtualized/~/dom-helpers from ./~/react-virtualized/~/dom-helpers/cjs/scrollbarSize.js
    5.1.4 ./~/dom-helpers from ./~/react-transition-group/cjs/CSSTransition.js


 warning  

regenerator-runtime
  Multiple versions of regenerator-runtime found:
    0.13.3 ./~/@babel/runtime/~/regenerator-runtime from ./~/@babel/runtime/regenerator/index.js
    0.13.5 ./~/regenerator-runtime from ./~/@babel/polyfill/lib/noConflict.js

Check how you can resolve duplicate packages: 
https://github.com/darrenscerri/duplicate-package-checker-webpack-plugin#resolving-duplicate-packages-in-your-bundle

Browser opens to http://localhost:8000/ trying to show the admin, but shows the loading icon forever. No errors or warnings in console or network. Also tries to open http://0.0.0.0:1337/admin for some reason, but that shows this:

{
"statusCode": 404,
"error": "Not Found",
"message": "Not Found"
}

Api seems to work correctly at http://localhost:1337/

This command works fine when strapi is created using yarn create strapi-app my-project. So I feel its related to this starter react blog.

The yarn develop (without --watch-admin) command works ok for the starter react blog.

ikkev avatar Jun 03 '20 06:06 ikkev