mirror of
https://github.com/makeplane/plane.git
synced 2025-12-25 16:19:43 +01:00
10 lines
137 B
JavaScript
10 lines
137 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
|
|
const nextConfig = {
|
|
experimental: {
|
|
appDir: true,
|
|
},
|
|
};
|
|
|
|
module.exports = nextConfig;
|