AFFiNE/next.config.js

8 lines
139 B
JavaScript
Raw Normal View History

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