github.com/lmittmann/w3@v0.20.0/docs/next.config.js (about) 1 import nextra from 'nextra' 2 3 const withNextra = nextra({ 4 theme: 'nextra-theme-docs', 5 themeConfig: './theme.config.jsx', 6 staticImage: true, 7 search: { 8 codeblocks: true 9 }, 10 defaultShowCopyCode: true 11 }) 12 13 export default withNextra({ 14 output: 'export', 15 reactStrictMode: true, 16 images: { 17 unoptimized: true, 18 } 19 })