We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6f57ac5 commit bb3787eCopy full SHA for bb3787e
cmd/root_command.go
@@ -346,7 +346,7 @@ var (
346
}
347
348
// paths
349
- if config.PathConfigurations.Len() > 0 || len(config.StaticPaths) > 0 || len(config.HARPathAllowList) > 0 || len(config.IgnorePathRewrite) > 0 {
+ if config.PathConfigurations != nil && config.PathConfigurations.Len() > 0 || len(config.StaticPaths) > 0 || len(config.HARPathAllowList) > 0 || len(config.IgnorePathRewrite) > 0 {
350
config.CompilePaths()
351
if len(config.IgnorePathRewrite) > 0 {
352
printLoadedIgnorePathRewrite(config.IgnorePathRewrite)
0 commit comments