plane/apps/app/next.config.js

19 lines
371 B
JavaScript
Raw Normal View History

2022-11-19 14:21:26 +00:00
/** @type {import('next').NextConfig} */
const path = require("path");
2022-11-19 14:21:26 +00:00
const nextConfig = {
reactStrictMode: false,
swcMinify: true,
images: {
domains: ["vinci-web.s3.amazonaws.com"],
},
output: 'standalone',
experimental: {
outputFileTracingRoot: path.join(__dirname, "../../"),
transpilePackages: ["ui"],
},
2022-11-19 14:21:26 +00:00
};
module.exports = nextConfig;