plano/apps/www/sanity.config.ts
Musa 56b3246f30
introduce SEO optimization and improve blog content rendering (#709)
* introduce SEO optimizations for marketing reach

* quality of life updates to Next

* format with biome

* improve wording on home badge

* adding additional keyword based on trends

* add code block and markdown support for blogs

* Update metadata for SEO
2026-01-28 17:52:39 -08:00

22 lines
538 B
TypeScript

import { defineConfig } from "sanity";
import { codeInput } from "@sanity/code-input";
import { table } from "@sanity/table";
import { markdownSchema } from "sanity-plugin-markdown";
import { structureTool } from "sanity/structure";
import { schemaTypes } from "./schemaTypes";
export default defineConfig({
name: "default",
title: "Plano",
projectId: "71ny25bn",
dataset: "production",
basePath: "/studio",
plugins: [structureTool(), codeInput(), table(), markdownSchema()],
schema: {
types: schemaTypes,
},
});