Next js config file type checking

This commit is contained in:
Dustin Brett
2021-06-19 22:39:49 -07:00
parent b0dc07a95e
commit 064ca1084d

View File

@@ -1,3 +1,12 @@
module.exports = {
// @ts-check
/**
* @type {import('next/dist/next-server/server/config').NextConfig}
* */
const nextConfig = {
experimental: {},
future: {},
reactStrictMode: true
};
module.exports = nextConfig;