mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-12-30 15:44:29 +03:00
cf99129205
* fix: minify incorrect * chore: format
9 lines
178 B
JavaScript
9 lines
178 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
productionBrowserSourceMaps: true,
|
|
reactStrictMode: false,
|
|
swcMinify: false,
|
|
};
|
|
|
|
module.exports = nextConfig;
|