mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-04-27 01:36:30 +02:00
8 lines
162 B
JavaScript
8 lines
162 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
reactStrictMode: true,
|
|
swcMinify: true,
|
|
trailingSlash: true,
|
|
};
|
|
|
|
module.exports = nextConfig;
|