14 lines
308 B
TOML
14 lines
308 B
TOML
[phases.build]
|
|
cmds = [
|
|
"npm run build",
|
|
"mkdir -p .next/standalone/public",
|
|
"cp -r public/* .next/standalone/public/ || true",
|
|
"cp -r .next/static .next/standalone/.next/static"
|
|
]
|
|
|
|
[phases.setup]
|
|
nixPkgs = ["nodejs_22", "npm-9_x", "openssl"]
|
|
|
|
[start]
|
|
cmd = "node .next/standalone/server.js"
|