mirror of
https://github.com/hpware/news-analyze.git
synced 2025-06-23 15:51:01 +08:00
9 lines
162 B
Bash
9 lines
162 B
Bash
#!/bin/bash
|
|
cd ./docs/
|
|
npm install -g vitepress
|
|
bunx vitepress build
|
|
cd ..
|
|
cp -R ./docs/.vitepress/dist/ ./public/docs/
|
|
echo "Done :)"
|
|
exit 1
|