AFFiNE/packages/app/next.config.js

11 lines
273 B
JavaScript
Raw Normal View History

const withTM = require('next-transpile-modules')(['@toeverything/pathfinder-logger']);
2022-09-22 10:39:53 +03:00
/** @type {import('next').NextConfig} */
const nextConfig = withTM({
productionBrowserSourceMaps: true,
reactStrictMode: true,
swcMinify: false,
});
2022-09-22 10:39:53 +03:00
2022-09-23 06:43:32 +03:00
module.exports = nextConfig;