You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Materialtube/src/next-seo.config.ts

12 lines
283 B

import packageInfo from "../package.json";
import type { DefaultSeoProps } from "next-seo";
const SEO: DefaultSeoProps = {
titleTemplate: `%s | ${packageInfo.displayName}`,
defaultTitle: packageInfo.displayName,
description: "This is a NextJS template."
};
export default SEO;