Skip to content

Commit

Permalink
Standards
Browse files Browse the repository at this point in the history
  • Loading branch information
JoviDeCroock authored Jan 29, 2025
1 parent 6c3d414 commit 104fde7
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion website/next.config.mjs
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
import nextra from 'nextra';
import path from 'node:path';
import vercel from './vercel.json';
import fs from 'node:fs';

const fileContents = fs.readFileSync('./vercel.json', 'utf-8');
const vercel = JSON.parse(fileContents);

const withNextra = nextra({
theme: 'nextra-theme-docs',
Expand Down

0 comments on commit 104fde7

Please sign in to comment.