-
Notifications
You must be signed in to change notification settings - Fork 293
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
fix: allow backslashes in app config (file format) #2209
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
Serialize string kwargs to the App constructor as r-strings to allow for backslashes in file paths (windows).
a2a4dc5
to
6788b63
Compare
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.
nice I think escaping is better
Do we need to do this for layouts? We put them in a subdirectory too, I just haven't see anyone have issues |
This change escapes backslashes all string arguments, so it will apply to layouts too (if the layout has a backslash). |
Escape backslashes in app config strings.
Fixes #2202