plane/apps/space/next.config.js

16 lines
354 B
JavaScript
Raw Normal View History

2023-08-08 07:25:42 +00:00
/** @type {import('next').NextConfig} */
const path = require("path");
2023-09-02 07:57:29 +00:00
const withImages = require("next-images")
2023-08-08 07:25:42 +00:00
2023-09-02 07:57:29 +00:00
const nextConfig = withImages({
basePath: "/spaces",
reactStrictMode: false,
swcMinify: true,
2023-08-08 07:25:42 +00:00
experimental: {
outputFileTracingRoot: path.join(__dirname, "../../"),
2023-08-08 07:25:42 +00:00
},
output: "standalone",
2023-09-02 07:57:29 +00:00
});
2023-08-08 07:25:42 +00:00
module.exports = nextConfig;