forked from github/plane
11 lines
202 B
JavaScript
11 lines
202 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
reactStrictMode: false,
|
|
swcMinify: true,
|
|
images: {
|
|
domains: ["vinci-web.s3.amazonaws.com"],
|
|
},
|
|
};
|
|
|
|
module.exports = nextConfig;
|