mirror of
https://github.com/aljazceru/claude-code-viewer.git
synced 2025-12-20 23:04:19 +01:00
14 lines
221 B
Bash
Executable File
14 lines
221 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -euxo pipefail
|
|
|
|
if [ -d "dist/.next" ]; then
|
|
rm -rf dist/.next
|
|
fi
|
|
|
|
pnpm exec next build
|
|
cp -r public .next/standalone/
|
|
cp -r .next/static .next/standalone/.next/
|
|
|
|
cp -r .next/standalone ./dist/
|