how to set config.mjs? #634
-
Hi, this is probably a dump question as I'm unfamiliar with coding. Replacing the code in config.mjs with the below does not seem to work. How can I properly enable the sidebar option in config.mjs? const config = {
showSidebar: true,
};
export default config; |
Beta Was this translation helpful? Give feedback.
Answered by
nightlightouo
Mar 5, 2024
Replies: 1 comment
-
To implement this, add the following code to config.mjs: export default {
showSidebar: true,
}; |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
nightlightouo
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
To implement this, add the following code to config.mjs: