bytelyst-devops-tools/dashboard/web/next.config.js

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;