mirror of
https://github.com/makeplane/plane.git
synced 2025-12-16 20:07:56 +01:00
14 lines
252 B
JavaScript
14 lines
252 B
JavaScript
|
|
/** @type {import('next').NextConfig} */
|
||
|
|
const nextConfig = {
|
||
|
|
trailingSlash: true,
|
||
|
|
reactStrictMode: false,
|
||
|
|
swcMinify: true,
|
||
|
|
output: "standalone",
|
||
|
|
images: {
|
||
|
|
unoptimized: true,
|
||
|
|
},
|
||
|
|
basePath: "/god-mode",
|
||
|
|
};
|
||
|
|
|
||
|
|
module.exports = nextConfig;
|