Files
onspring-api-docs/next.config.js
T

10 lines
157 B
JavaScript
Raw Normal View History

2023-04-07 21:33:32 -05:00
/** @type {import('next').NextConfig} */
const nextConfig = {
experimental: {
appDir: true,
},
2023-04-10 00:04:49 -05:00
basePath: '/docs',
2023-04-07 23:18:45 -05:00
};
2023-04-07 21:33:32 -05:00
2023-04-07 23:18:45 -05:00
module.exports = nextConfig;