mirror of
https://github.com/DustinBrett/daedalOS.git
synced 2026-01-15 12:15:02 +00:00
14 lines
184 B
JavaScript
14 lines
184 B
JavaScript
// @ts-check
|
|
|
|
/**
|
|
* @type {import('next').NextConfig}
|
|
* */
|
|
const nextConfig = {
|
|
experimental: {
|
|
reactRoot: true,
|
|
},
|
|
reactStrictMode: true,
|
|
};
|
|
|
|
module.exports = nextConfig;
|