-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #17 from function-and-mountain/docs/weeks
docs: 쏙쏙쑥쑥 문서 정리
- Loading branch information
Showing
38 changed files
with
3,533 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,19 @@ | ||
/* eslint-disable @typescript-eslint/no-var-requires */ | ||
const withPlugins = require("next-compose-plugins"); | ||
const nextra = require("nextra"); | ||
const withPlugins = require('next-compose-plugins') | ||
const nextra = require('nextra') | ||
|
||
/** @type {import('next').NextConfig} */ | ||
const nextConfig = { | ||
reactStrictMode: true, | ||
}; | ||
} | ||
|
||
/** @type {import('nextra').NextraConfig} */ | ||
const nextraConfig = { | ||
theme: "nextra-theme-docs", | ||
themeConfig: "./theme.config.jsx", | ||
theme: 'nextra-theme-docs', | ||
themeConfig: './theme.config.jsx', | ||
defaultShowCopyCode: true, | ||
}; | ||
} | ||
|
||
const withNextra = nextra(nextraConfig); | ||
const withNextra = nextra(nextraConfig) | ||
|
||
module.exports = withPlugins([withNextra], nextConfig); | ||
module.exports = withPlugins([withNextra], nextConfig) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,3 +10,7 @@ td, | |
th { | ||
text-align: start !important; | ||
} | ||
|
||
article details > summary:before { | ||
min-width: 1.2em; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,11 @@ | ||
{ | ||
"OT": "0 회차 (OT)", | ||
"week_1": "1 회차" | ||
"week_1": "1 회차", | ||
"week_2": "2 회차", | ||
"week_3": "3 회차", | ||
"week_4": "4 회차", | ||
"week_5": "5 회차", | ||
"week_6": "6 회차", | ||
"week_8": "8 회차", | ||
"week_9": "9 회차" | ||
} |
Oops, something went wrong.