// - maxDepthPerThrowable = "full" or "short" or an integer value // - shortenedClassNameLength = "full" or "short" or an integer value // - maxLength = "full" or "short" or an integer value // //%msg%n%stack{5,1024,10,rootFirst,regex1,regex2,evaluatorName} pattern = "%da...
package main import ( "log" "github.com/gofiber/fiber/v3" "github.com/gofiber/template/pug" ) func main() { // You can setup Views engine before initiation app: app := fiber.New(fiber.Config{ Views: pug.New("./views", ".pug"), }) // And now, you can call template `./vie...