mirror of
https://github.com/makeplane/plane.git
synced 2025-12-15 19:37:51 +01:00
30 lines
602 B
JavaScript
30 lines
602 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 || "",
|
|
experimental: {
|
|
optimizePackageImports: [
|
|
"@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;
|