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