Files
daedalOS/next.config.js
2022-03-01 21:02:05 -08:00

20 lines
308 B
JavaScript

// @ts-check
/**
* @type {import('next').NextConfig}
* */
const nextConfig = {
compiler: {
reactRemoveProperties: true,
removeConsole: true,
styledComponents: true,
},
experimental: {
reactRoot: true,
},
reactStrictMode: true,
swcMinify: true,
};
module.exports = nextConfig;