AFFiNE/packages/app/next.config.js

9 lines
178 B
JavaScript
Raw Normal View History

2022-09-22 10:39:53 +03:00
/** @type {import('next').NextConfig} */
const nextConfig = {
productionBrowserSourceMaps: true,
2022-10-13 09:38:57 +03:00
reactStrictMode: false,
swcMinify: false,
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;