diff --git a/cmd/root_command.go b/cmd/root_command.go index 32cf32f..8f86caa 100644 --- a/cmd/root_command.go +++ b/cmd/root_command.go @@ -346,7 +346,7 @@ var ( } // paths - 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 { config.CompilePaths() if len(config.IgnorePathRewrite) > 0 { printLoadedIgnorePathRewrite(config.IgnorePathRewrite)