Skip to content

Commit 9378992

Browse files
author
Nigel Gott
committedJul 20, 2023
Change the default instead of forcing the config param as the nuxt command...
1 parent b2b8b57 commit 9378992

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎web-frontend/docker/docker-entrypoint.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ case "$1" in
8787
nuxt)
8888
startup_plugin_setup
8989
setup_additional_modules
90-
exec ./node_modules/.bin/nuxt start --hostname "${BASEROW_WEBFRONTEND_BIND_ADDRESS:-0.0.0.0}" --port "$BASEROW_WEBFRONTEND_PORT" --config-file ./config/nuxt.config.prod.js "${@:2}"
90+
exec ./node_modules/.bin/nuxt start --hostname "${BASEROW_WEBFRONTEND_BIND_ADDRESS:-0.0.0.0}" --port "$BASEROW_WEBFRONTEND_PORT" "${@:2}"
9191
;;
9292
nuxt-local)
9393
startup_plugin_setup

‎web-frontend/nuxt.config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
import config from './config/nuxt.config.dev.js'
1+
import config from './config/nuxt.config.prod.js'
22

33
export default config

0 commit comments

Comments
 (0)
Please sign in to comment.