2023-08-08 07:25:42 +00:00
|
|
|
/** @type {import('next').NextConfig} */
|
2023-08-21 19:43:51 +00:00
|
|
|
const path = require("path");
|
2023-09-03 13:20:30 +00:00
|
|
|
const withImages = require("next-images")
|
2023-08-08 07:25:42 +00:00
|
|
|
|
2023-09-03 13:20:30 +00:00
|
|
|
const nextConfig = withImages({
|
|
|
|
basePath: "/spaces",
|
2023-08-21 12:42:41 +00:00
|
|
|
reactStrictMode: false,
|
|
|
|
swcMinify: true,
|
2023-08-08 07:25:42 +00:00
|
|
|
experimental: {
|
2023-09-03 13:20:30 +00:00
|
|
|
outputFileTracingRoot: path.join(__dirname, "../"),
|
2023-08-08 07:25:42 +00:00
|
|
|
},
|
2023-08-21 19:43:51 +00:00
|
|
|
output: "standalone",
|
2023-09-03 13:20:30 +00:00
|
|
|
});
|
2023-08-08 07:25:42 +00:00
|
|
|
|
|
|
|
module.exports = nextConfig;
|