9 lines
140 B
TypeScript
9 lines
140 B
TypeScript
|
/** @type {import('next').NextConfig} */
|
||
|
const nextConfig = {
|
||
|
experimental: {
|
||
|
appDir: true
|
||
|
}
|
||
|
}
|
||
|
|
||
|
module.exports = nextConfig
|