plane/space/next.config.js

16 lines
351 B
JavaScript
Raw Normal View History

2023-08-08 07:25:42 +00:00
/** @type {import('next').NextConfig} */
const path = require("path");
const withImages = require("next-images")
2023-08-08 07:25:42 +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-08-08 07:25:42 +00:00
module.exports = nextConfig;