๐ฆ theme-live-codeblock
react-live ๊ธฐ๋ฐ @theme/CodeBlock ์ปดํฌ๋ํธ๋ฅผ ์ง์ํ๋ ํ
๋ง์
๋๋ค. ์์ธํ ๋ด์ฉ์ ์ธํฐ๋ํฐ๋ธ ์ฝ๋ ์๋ํฐ ๋ฌธ์์์ ์ฐธ๊ณ ํ์ค ์ ์์ต๋๋ค.
- npm
 - Yarn
 
npm install --save @docusaurus/theme-live-codeblockyarn add @docusaurus/theme-live-codeblock์ค์ #
docusaurus.config.js
module.exports = {  plugins: ['@docusaurus/theme-live-codeblock'],  themeConfig: {    liveCodeBlock: {      /**       * live playground ์์น๋ฅผ ์๋ํฐ์ ์ ๋๋ ์๋๋ก ์ค์ ํฉ๋๋ค.       * ์ค์ ํ  ์ ์๋ ๊ฐ: "top" | "bottom"       */      playgroundPosition: 'bottom',    },  },};