mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-13 12:55:00 +00:00
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;
|