Skip to content
Compare
Choose a tag to compare
@willybrauner willybrauner released this 12 Oct 17:02
· 16 commits to main since this release
e5016e3

Minor Changes

  • ec4a034: getStaticProps params returns RouteContext instead route props (#54)

    before:

      {
        path: "/",
        getStaticProps: async (props, locale) => {}
      }

    after:

      {
        path: "/",
        getStaticProps: async (context, locale) => {}
      }