mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
chore: modified next.js config
This commit is contained in:
parent
f9c3b4ca12
commit
e91406bd3f
@ -1,13 +1,15 @@
|
|||||||
/** @type {import('next').NextConfig} */
|
/** @type {import('next').NextConfig} */
|
||||||
const path = require("path");
|
const path = require("path");
|
||||||
|
const withImages = require("next-images")
|
||||||
|
|
||||||
const nextConfig = {
|
const nextConfig = withImages({
|
||||||
|
basePath: "/spaces",
|
||||||
reactStrictMode: false,
|
reactStrictMode: false,
|
||||||
swcMinify: true,
|
swcMinify: true,
|
||||||
experimental: {
|
experimental: {
|
||||||
outputFileTracingRoot: path.join(__dirname, "../../"),
|
outputFileTracingRoot: path.join(__dirname, "../../"),
|
||||||
},
|
},
|
||||||
output: "standalone",
|
output: "standalone",
|
||||||
};
|
});
|
||||||
|
|
||||||
module.exports = nextConfig;
|
module.exports = nextConfig;
|
||||||
|
Loading…
Reference in New Issue
Block a user