mirror of
https://github.com/hpware/news-analyze.git
synced 2025-06-23 13:04:23 +00:00
8 lines
142 B
Bash
8 lines
142 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
|