Add Dockerfile and workflow for static hosting image.

This commit is contained in:
Rafi
2023-04-11 15:32:06 +08:00
parent fa14276d0a
commit 55279def0d
6 changed files with 63 additions and 5 deletions

View File

@@ -1,9 +1,8 @@
// https://nuxt.com/docs/api/configuration/nuxt-config
const appName = process.env.NUXT_PUBLIC_APP_NAME ?? 'ChatGPT UI'
export default defineNuxtConfig({
debug: process.env.NODE_ENV !== 'production',
ssr: true,
ssr: process.env.SSR !== 'false',
app: {
head: {
title: appName,