Files
warframe-center/app/next.config.js
2022-03-13 14:06:16 +03:00

10 lines
179 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
webpack: (config, { webpack }) => {
return config
},
}
module.exports = nextConfig