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