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