Create next.config.js if it is missing. (#701)
Smoke Test / Run basic test suite (push) Successful in 4m3s
Details
Publish / Build and publish (push) Successful in 1m3s
Details
Deploy Test / Run deploy test suite (push) Successful in 3m16s
Details
K8s Deploy Test / Run deploy test suite (push) Failing after 3m1s
Details
Webapp Test / Run webapp test suite (push) Successful in 3m13s
Details
Smoke Test / Run basic test suite (push) Successful in 4m3s
Details
Publish / Build and publish (push) Successful in 1m3s
Details
Deploy Test / Run deploy test suite (push) Successful in 3m16s
Details
K8s Deploy Test / Run deploy test suite (push) Failing after 3m1s
Details
Webapp Test / Run webapp test suite (push) Successful in 3m13s
Details
* Create next.config.js if it is missing. * Add comment.pull/704/head v1.1.0-0587813-202401151813
parent
4b3ea7c30f
commit
0587813dd0
|
|
@ -21,6 +21,11 @@ WORK_DIR="${1:-/app}"
|
|||
|
||||
cd "${WORK_DIR}" || exit 1
|
||||
|
||||
# If this file doesn't exist at all, we'll get errors below.
|
||||
if [ ! -f "next.config.js" ]; then
|
||||
touch next.config.js
|
||||
fi
|
||||
|
||||
if [ ! -f "next.config.dist" ]; then
|
||||
cp next.config.js next.config.dist
|
||||
fi
|
||||
|
|
|
|||
Loading…
Reference in New Issue