mirror of
https://github.com/penpot/penpot.git
synced 2025-01-07 15:39:42 -05:00
🐛 Fix doubled quotes in frontend config
Docker parses environment variables literally, delivering quoted flags in the $PENPOT_FLAGS variable. This in turn leads to doubled quotes in the resulting config.js in front and after the flags, omitting them completely. This commit fixes this behaviour.
This commit is contained in:
parent
89e64236b0
commit
3a4563d755
1 changed files with 1 additions and 2 deletions
|
@ -8,8 +8,7 @@
|
|||
PENPOT_PUBLIC_URI=http://localhost:9001
|
||||
|
||||
## Feature flags.
|
||||
|
||||
PENPOT_FLAGS="enable-registration enable-login disable-email-verification"
|
||||
PENPOT_FLAGS=enable-registration enable-login disable-email-verification
|
||||
|
||||
## Temporal workaround because of bad builtin default
|
||||
|
||||
|
|
Loading…
Reference in a new issue