mirror of
https://github.com/makeplane/plane
synced 2025-08-07 19:59:33 +00:00
28 lines
548 B
JavaScript
28 lines
548 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 || "",
|
|
transpilePackages: [
|
|
"@plane/constants",
|
|
"@plane/editor",
|
|
"@plane/hooks",
|
|
"@plane/i18n",
|
|
"@plane/logger",
|
|
"@plane/propel",
|
|
"@plane/services",
|
|
"@plane/shared-state",
|
|
"@plane/types",
|
|
"@plane/ui",
|
|
"@plane/utils",
|
|
],
|
|
};
|
|
|
|
module.exports = nextConfig;
|