forked from NotNet/gluestick
9 lines
134 B
JavaScript
9 lines
134 B
JavaScript
|
/** @type {import('next').NextConfig} */
|
||
|
const nextConfig = {
|
||
|
experimental: {
|
||
|
appDir: true
|
||
|
}
|
||
|
};
|
||
|
|
||
|
module.exports = nextConfig;
|