mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
10 lines
137 B
JavaScript
10 lines
137 B
JavaScript
|
/** @type {import('next').NextConfig} */
|
||
|
|
||
|
const nextConfig = {
|
||
|
experimental: {
|
||
|
appDir: true,
|
||
|
},
|
||
|
};
|
||
|
|
||
|
module.exports = nextConfig;
|