forked from github/plane
19 lines
371 B
JavaScript
19 lines
371 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const path = require("path");
|
|
|
|
|
|
const nextConfig = {
|
|
reactStrictMode: false,
|
|
swcMinify: true,
|
|
images: {
|
|
domains: ["vinci-web.s3.amazonaws.com"],
|
|
},
|
|
output: 'standalone',
|
|
experimental: {
|
|
outputFileTracingRoot: path.join(__dirname, "../../"),
|
|
transpilePackages: ["ui"],
|
|
},
|
|
};
|
|
|
|
module.exports = nextConfig;
|