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