Files
daedalOS/next.config.js
2022-02-21 21:16:19 -08:00

14 lines
184 B
JavaScript

// @ts-check
/**
* @type {import('next').NextConfig}
* */
const nextConfig = {
experimental: {
reactRoot: true,
},
reactStrictMode: true,
};
module.exports = nextConfig;