diff --git a/backend/prisma/seed/config.seed.ts b/backend/prisma/seed/config.seed.ts index 8216329..a6f4f7a 100644 --- a/backend/prisma/seed/config.seed.ts +++ b/backend/prisma/seed/config.seed.ts @@ -20,6 +20,11 @@ const configVariables: ConfigVariables = { defaultValue: "http://localhost:3000", secret: false, }, + webroot: { + type: "string", + defaultValue: "", + secret: false, + }, showHomePage: { type: "boolean", defaultValue: "true", diff --git a/frontend/next.config.js b/frontend/next.config.js index e3202d8..808c0d5 100644 --- a/frontend/next.config.js +++ b/frontend/next.config.js @@ -20,6 +20,5 @@ module.exports = withPWA({ }, serverRuntimeConfig: { apiURL: process.env.API_URL ?? 'http://localhost:8080', - webroot: process.env.WEBROOT ?? '', }, });