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