daedalOS/next.config.js
2021-06-19 22:39:49 -07:00

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;