mirror of
https://github.com/Mintplex-Labs/anythingllm-docs.git
synced 2026-07-21 17:25:29 -04:00
15 lines
279 B
JavaScript
15 lines
279 B
JavaScript
const withNextra = require('nextra')({
|
|
theme: 'nextra-theme-docs',
|
|
themeConfig: './theme.config.tsx',
|
|
})
|
|
|
|
module.exports = withNextra({
|
|
webpack(config) {
|
|
config.module.rules.push({
|
|
test: /\.svg$/,
|
|
use: ['@svgr/webpack'],
|
|
});
|
|
|
|
return config;
|
|
},
|
|
}); |