๐ฆ plugin-debug
The debug plugin will display useful debug information at http://localhost:3000/__docusaurus/debug
.
It is mostly useful for plugin authors, that will be able to inspect more easily the content of the .docusaurus
folder (like the creates routes), but also be able to inspect data structures that are never written to disk, like the plugin data loaded through the contentLoaded
lifecycle.
If you use the plugin via the classic preset, the preset will enable the plugin in development and disable it in production by default (debug: undefined
) to avoid exposing potentially sensitive information. You can use debug: true
to always enable it or debug: false
to always disable it.
๋ ๋ฆฝ ์คํํ ํ๋ฌ๊ทธ์ธ์ ์ฌ์ฉํ๋ ๊ฒฝ์ฐ์๋ ํ๊ฒฝ ์ค์ ํ์ธ ํ ๊ฐ์ ํจ๊ณผ๋ฅผ ์ป์ ์ ์์ต๋๋ค.
export default {
plugins: [
process.env.NODE_ENV === 'production' && '@docusaurus/plugin-debug',
].filter(Boolean),
};
๋ฒ๊ทธ๋ฅผ ๋ฐ๊ฒฌํ๊ณ ๋ฑ๋กํ๋ ค๋ ๊ฒฝ์ฐ ํด๋น ํ๋ฌ๊ทธ์ธ์ ํ์ฑํํ๋ ๊ฒ์ ๊ถ์ฅํ ๊ฒ๋๋ค. ํด๋น ํ๋ฌ๊ทธ์ธ์ ์ฌ์ฉํ๋ฉด ์ฌ๋ฌ๋ถ์ ๋ฐฐํฌ ์ค์ ์ ์ข ๋ ์ฝ๊ฒ ๊ฒ์ฌํ ์ ์์ต๋๋ค.
If you don't have any sensitive information, you can keep it on in production like we do.
Installationโ
- npm
- Yarn
- pnpm
npm install --save @docusaurus/plugin-debug
yarn add @docusaurus/plugin-debug