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