DocSpace-client/packages/doceditor/next.config.js

12 lines
182 B
JavaScript
Raw Normal View History

2024-01-09 07:32:57 +00:00
/** @type {import('next').NextConfig} */
2024-01-09 16:25:50 +00:00
const nextConfig = {
basePath: "/doceditor",
logging: {
fetches: {
fullUrl: true,
},
},
};
2024-01-09 07:32:57 +00:00
2024-01-09 16:25:50 +00:00
module.exports = nextConfig;