diff --git a/examples/i18n-routing/pages/gsp/[slug].js b/examples/i18n-routing/pages/gsp/[slug].js index 896537fe56..5b22eec70f 100644 --- a/examples/i18n-routing/pages/gsp/[slug].js +++ b/examples/i18n-routing/pages/gsp/[slug].js @@ -11,7 +11,7 @@ export default function GspPage(props) { return (
-

getServerSideProps page

+

getStaticProps page

Current slug: {query.slug}

Current locale: {props.locale}

Default locale: {defaultLocale}

diff --git a/examples/i18n-routing/pages/gsp/index.js b/examples/i18n-routing/pages/gsp/index.js index 4243a6034c..9057425840 100644 --- a/examples/i18n-routing/pages/gsp/index.js +++ b/examples/i18n-routing/pages/gsp/index.js @@ -7,7 +7,7 @@ export default function GspPage(props) { return (
-

getServerSideProps page

+

getStaticProps page

Current locale: {props.locale}

Default locale: {defaultLocale}

Configured locales: {JSON.stringify(props.locales)}