Files

11 lines
201 B
JavaScript
Raw Permalink Normal View History

/** @type {import('next').NextConfig} */
const nextConfig = {
images: { unoptimized: true },
webpack: config => {
config.parallelism = 128
return config
},
}
module.exports = nextConfig