mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-11-27 05:16:13 +03:00
a942b8b9f1
* chore: update dependencies * fix: update block suite api * chore: use strict mode * chore: clean code
11 lines
273 B
JavaScript
11 lines
273 B
JavaScript
const withTM = require('next-transpile-modules')(['@toeverything/pathfinder-logger']);
|
|
|
|
/** @type {import('next').NextConfig} */
|
|
const nextConfig = withTM({
|
|
productionBrowserSourceMaps: true,
|
|
reactStrictMode: true,
|
|
swcMinify: false,
|
|
});
|
|
|
|
module.exports = nextConfig;
|