mirror of
https://github.com/checktheroads/hyperglass
synced 2024-05-11 05:55:08 +00:00
18 lines
421 B
JavaScript
18 lines
421 B
JavaScript
/**
|
|
* @type {import('next').NextConfig}
|
|
*/
|
|
const nextConfig = {
|
|
reactStrictMode: true,
|
|
poweredByHeader: false,
|
|
typescript: {
|
|
ignoreBuildErrors: true,
|
|
},
|
|
experimental: {
|
|
// See: https://github.com/react-hook-form/resolvers/issues/271#issuecomment-986618265
|
|
// See: https://github.com/vercel/next.js/issues/30750#issuecomment-962198711
|
|
esmExternals: false,
|
|
},
|
|
};
|
|
|
|
module.exports = nextConfig;
|