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