feat: changes

This commit is contained in:
Jacob Nguyen
2022-08-07 17:29:05 -05:00
parent 83320e49f6
commit ed91cceabc
3 changed files with 4 additions and 5 deletions

View File

@@ -22,5 +22,4 @@ Welcome to sern's official guide. This guide will go through all the core featur
* [Your first event](walkthrough/first-event.md)
### Good to know
[//]: (Maybe redirect to the sern.config.json section in future)
* [sern.config.json](walkthrough/good-to-know.md)

View File

@@ -128,8 +128,8 @@ const config = {
'docusaurus-plugin-typedoc',
{
//if you're editing website, please change this to your local branch of sern to generate documentation
entryPoints: ['C:\\Users\\jacob\\OneDrive\\Desktop\\Projects\\sern\\sernHandlerV2\\src\\index.ts'],
tsconfig: 'C:\\Users\\jacob\\OneDrive\\Desktop\\Projects\\sern\\sernHandlerV2\\tsconfig-esm.json',
entryPoints: ['../sernHandlerV2/src/index.ts'],
tsconfig: '../sernHandlerV2/tsconfig-base.json',
},
]
]

View File

@@ -8,7 +8,7 @@ import logo from '@site/static/img/sern-logo.png'
import styles from './index.module.css';
function HomepageHeader() {
const {siteConfig} = useDocusaurusContext();
const { siteConfig } = useDocusaurusContext();
return (
<header className={clsx('hero hero--primary-darker', styles.heroBanner)}>
<div className="container">
@@ -31,7 +31,7 @@ export default function Home() {
const {siteConfig} = useDocusaurusContext();
return (
<Layout
title={`Hello from ${siteConfig.title}`}
title={siteConfig.title}
description="Description will go into a meta tag in <head />">
<HomepageHeader />
<main>