From 5a3d5148a9d52487f102e52bd079006c916075c9 Mon Sep 17 00:00:00 2001 From: Fabian Mastenbroek Date: Thu, 27 Oct 2022 16:13:04 +0200 Subject: fix(web/ui): Disable configuration of basePath This change removes the ability to configure the basePath of the Next.js application using the Quarkus extension. This functionality was brittle due to relying on Next.js internals coping with out replacement strategy. We should wait for Next.js to implement proper support for changing the base path at runtime before making this functionality available again. --- .../opendc-web-server/src/main/resources/application-dev.properties | 1 - .../opendc-web-server/src/main/resources/application-prod.properties | 1 - 2 files changed, 2 deletions(-) (limited to 'opendc-web/opendc-web-server/src') diff --git a/opendc-web/opendc-web-server/src/main/resources/application-dev.properties b/opendc-web/opendc-web-server/src/main/resources/application-dev.properties index 4065f55f..5fbc4c04 100644 --- a/opendc-web/opendc-web-server/src/main/resources/application-dev.properties +++ b/opendc-web/opendc-web-server/src/main/resources/application-dev.properties @@ -30,7 +30,6 @@ quarkus.flyway.clean-at-start=true opendc.security.enabled=false # Mount web UI at root and API at "/api" -quarkus.opendc-ui.path=/ quarkus.resteasy.path=/api # Swagger UI diff --git a/opendc-web/opendc-web-server/src/main/resources/application-prod.properties b/opendc-web/opendc-web-server/src/main/resources/application-prod.properties index 8e6a9720..fe997fc0 100644 --- a/opendc-web/opendc-web-server/src/main/resources/application-prod.properties +++ b/opendc-web/opendc-web-server/src/main/resources/application-prod.properties @@ -30,7 +30,6 @@ opendc.security.enabled=false quarkus.oidc.enabled=${opendc.security.enabled} # Mount web UI at root and API at "/api" -quarkus.opendc-ui.path=/ quarkus.resteasy.path=/api # Swagger UI -- cgit v1.2.3