There was an error while loading. Please reload this page.
1 parent d93f7d2 commit bc049efCopy full SHA for bc049ef
1 file changed
.github/workflows/deploy.yml
@@ -52,7 +52,10 @@ jobs:
52
mkdir -p deploy/.next
53
cp -r .next/static deploy/.next/static
54
55
- cp -r public deploy/public
+ # standalone already ships a traced public/ (llms.txt), so `cp -r public
56
+ # deploy/public` would nest into it. Copy the contents, not the dir.
57
+ mkdir -p deploy/public
58
+ cp -r public/. deploy/public/
59
60
cp ecosystem.config.js deploy/ecosystem.config.js
61
0 commit comments