forked from github/plane
10 lines
137 B
JavaScript
10 lines
137 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
|
|
const nextConfig = {
|
|
experimental: {
|
|
appDir: true,
|
|
},
|
|
};
|
|
|
|
module.exports = nextConfig;
|