Skip to content

Commit c1b692f

Browse files
committed
Fix lint errors
1 parent 4310751 commit c1b692f

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

next.config.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/** @type {import('next').NextConfig} */
2-
const withNextra = require('nextra')({
3-
theme: 'nextra-theme-docs',
4-
themeConfig: './theme.config.jsx'
2+
const withNextra = require("nextra")({
3+
theme: "nextra-theme-docs",
4+
themeConfig: "./theme.config.jsx",
55
});
66

77
module.exports = withNextra();

theme.config.jsx

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
export default {
2-
logo: <span>My Nextra Documentation</span>,
3-
project: {
4-
link: 'https://github.com/poac-dev/poac'
5-
}
6-
// ... other theme options
7-
}
2+
logo: <span>My Nextra Documentation</span>,
3+
project: {
4+
link: "https://github.com/poac-dev/poac",
5+
},
6+
// ... other theme options
7+
};

0 commit comments

Comments
 (0)