diff --git a/render.go b/render.go index 141e152..f4783a2 100644 --- a/render.go +++ b/render.go @@ -1,15 +1,16 @@ package go_ssr import ( - "encoding/json" "fmt" - "github.com/natewong1313/go-react-ssr/internal/html" - "github.com/natewong1313/go-react-ssr/internal/utils" - "github.com/rs/zerolog" "html/template" "os" "path/filepath" "runtime" + + "github.com/goccy/go-json" + "github.com/natewong1313/go-react-ssr/internal/html" + "github.com/natewong1313/go-react-ssr/internal/utils" + "github.com/rs/zerolog" ) // RenderConfig is the config for rendering a route