update make file to make_frontend to remove node_modules before install and avoid binding error
This commit is contained in:
parent
f4793940b0
commit
0a452750dd
1 changed files with 2 additions and 2 deletions
4
Makefile
4
Makefile
|
|
@ -32,10 +32,10 @@ lint:
|
|||
poetry run ruff . --fix
|
||||
|
||||
install_frontend:
|
||||
cd src/frontend && npm install
|
||||
cd src/frontend && m -rf node_modules && npm install
|
||||
|
||||
run_frontend:
|
||||
cd src/frontend && npm start
|
||||
cd src/frontend && rm -rf node_modules && npm start
|
||||
|
||||
frontend:
|
||||
make install_frontend
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue