-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: Env vars from query #16
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
conf.eventAbbr = vars.eventAbbr | ||
} | ||
if (vars.transTimePage1) { | ||
conf.transTimePage1 = parseFloat(vars.transTimePage1) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@Gaku-Kunimi
元々parseIntを使っていて小数点以下が破棄されていたのを、parseFloatに直したので、 #14 が直っているかもしれません。
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
おぉ、なるほど
見てみます!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
再現させる環境の都合上マージして確認しちゃいます!
menu画面から各幕間ページに行くときに、query parameterが維持されるようにしました |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
上書きできることを確認しました
これは便利で助かります!
環境変数で指定している値を、全てquery stringからoverrideできるようにしました。
NEXT_PUBLIC_XXX となっている場合、XXXの部分をcamelCaseにしてqueryに追加してもらえたら、overrideできます。
debugだけではなく、excludedTalks や transTimePageX の差し替えなどもできます。
CNDT2023で必須の修正ではないと思うので、カンファレンスが終わった後でmergeでも良さそうです。