Filenames such as a+.txt are not served because of the following line.
|
else if (!opts.dotfiles && /(^\.|[\\+|\/+]\.)/.test(name)) return; |
- Why are filenames with
+. filtered out?
- There seems to be a duplicate
+ in the character-set.
- (^\.|[\\+|\/+]\.)
+ (^\.|[\\+|\/]\.)
Filenames such as
a+.txtare not served because of the following line.sirv/packages/sirv/index.js
Line 155 in 50b1964
+.filtered out?+in the character-set.