SurfSense/apps/web/next.config.js

9 lines
162 B
JavaScript
Raw Normal View History

2024-07-30 16:00:11 -07:00
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
swcMinify: true,
trailingSlash: true,
};
module.exports = nextConfig;