10 lines
157 B
JavaScript
10 lines
157 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
experimental: {
|
|
appDir: true,
|
|
},
|
|
basePath: '/docs',
|
|
};
|
|
|
|
module.exports = nextConfig;
|