vitepress-blog/entrypoint.sh

6 lines
120 B
Bash
Raw Normal View History

2024-07-08 11:07:27 +08:00
#!/bin/sh
if [ ! -d "/usr/src/app/node_modules" ]; then
echo "安装依赖文件..."
npm install
fi
npm run "$@"