webpack-base/makefile

8 lines
133 B
Makefile
Raw Normal View History

2023-01-09 20:58:06 +00:00
build:
mkdir -p dist
cp static/index.html dist/
cp src/index.js dist/
dev-server:
python -m http.server --directory dist/ 8700