12 lines
214 B
JavaScript
12 lines
214 B
JavaScript
const path = require('node:path');
|
|
|
|
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
reactStrictMode: true,
|
|
turbopack: {
|
|
root: path.join(__dirname, '..'),
|
|
},
|
|
};
|
|
|
|
module.exports = nextConfig;
|