mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
16 lines
354 B
JavaScript
16 lines
354 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const path = require("path");
|
|
const withImages = require("next-images")
|
|
|
|
const nextConfig = withImages({
|
|
basePath: "/spaces",
|
|
reactStrictMode: false,
|
|
swcMinify: true,
|
|
experimental: {
|
|
outputFileTracingRoot: path.join(__dirname, "../../"),
|
|
},
|
|
output: "standalone",
|
|
});
|
|
|
|
module.exports = nextConfig;
|