Skip to content

Edit This Page#

View Markdown

Edit links are opt-in and use the Markdown file path passed into the transform.

import { oxContent } from "@ox-content/vite-plugin";

export default {
  plugins: [
    oxContent({
      editThisPage: {
        repoUrl: "https://github.com/owner/repo",
        branch: "main",
        rootDir: process.cwd(),
        label: "Suggest an edit",
      },
    }),
  ],
};

The rendered link points to repoUrl/edit/<branch>/<relative-source-path>.

Last updated: