mirror of
https://github.com/DustinBrett/daedalOS.git
synced 2026-01-15 12:15:02 +00:00
20 lines
308 B
JavaScript
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;
|