AFFiNE/packages/app/next.config.js

8 lines
140 B
JavaScript
Raw Normal View History

2022-09-22 10:39:53 +03:00
/** @type {import('next').NextConfig} */
const nextConfig = {
2022-10-13 09:38:57 +03:00
reactStrictMode: false,
2022-09-22 10:39:53 +03:00
swcMinify: true,
2022-09-23 06:43:32 +03:00
};
2022-09-22 10:39:53 +03:00
2022-09-23 06:43:32 +03:00
module.exports = nextConfig;