test of standalone build
All checks were successful
Build and Deploy docker container / build (push) Successful in 3m41s

This commit is contained in:
Jonathan Branan 2024-11-19 14:21:02 -06:00
parent 99611462a3
commit 1230e8d9f3
2 changed files with 2 additions and 2 deletions

View File

@ -44,7 +44,7 @@ jobs:
- name: Lint
run: yarn lint
- name: Build app and export to ./out
run: EXPORT=1 UNOPTIMIZED=1 yarn build
run: EXPORT=0 UNOPTIMIZED=1 yarn build
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Docker Hub

View File

@ -54,7 +54,7 @@ const securityHeaders = [
},
]
const output = process.env.EXPORT ? 'export' : undefined
const output = process.env.EXPORT ? 'export' : 'standalone'
const basePath = process.env.BASE_PATH || undefined
const unoptimized = process.env.UNOPTIMIZED ? true : undefined