mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
14 lines
309 B
JavaScript
14 lines
309 B
JavaScript
|
/** @type {import('next').NextConfig} */
|
||
|
const nextConfig = {
|
||
|
trailingSlash: true,
|
||
|
reactStrictMode: false,
|
||
|
swcMinify: true,
|
||
|
output: "standalone",
|
||
|
images: {
|
||
|
unoptimized: true,
|
||
|
},
|
||
|
basePath: process.env.NEXT_PUBLIC_DEPLOY_WITH_NGINX === "1" ? "/god-mode" : "",
|
||
|
};
|
||
|
|
||
|
module.exports = nextConfig;
|