mirror of
https://github.com/DefectingCat/DefectingCat.github.io
synced 2025-07-15 08:41:37 +00:00
12 lines
274 B
Bash
Executable File
12 lines
274 B
Bash
Executable File
#!/bin/env bash
|
|
|
|
set -xe
|
|
|
|
pnpm build-local
|
|
mkdir .next/standalone/public && cp -aR public/* .next/standalone/public
|
|
mkdir .next/standalone/public/_next && cp -aR .next/static/ .next/standalone/public/_next
|
|
cd .next/
|
|
tar zcvf standalone.tar.gz standalone/
|
|
cd ..
|
|
ls -l .next/
|