Skip to content

Commit

Permalink
fix: issue with pathname sanitization
Browse files Browse the repository at this point in the history
We need to allow uppercase characters.
  • Loading branch information
swashata committed Oct 27, 2019
1 parent a4fb650 commit f09f09f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/entrypoint/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ declare const window: { [x: string]: any };
// We would override __webpack_public_path__ only if __WPACKIO__ webpack plugin is set
if (__WPACKIO__) {
const path = (__WPACKIO__.appName + __WPACKIO__.outputPath).replace(
/[^a-z0-9_-]/g,
/[^a-zA-Z0-9_-]/g,
''
);
// eslint-disable-next-line no-global-assign
Expand Down

0 comments on commit f09f09f

Please sign in to comment.