17 lines
322 B
JavaScript
17 lines
322 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
images: {
|
|
localPatterns: [
|
|
{
|
|
pathname: '/assets/images/**',
|
|
search: '',
|
|
},
|
|
],
|
|
},
|
|
experimental: {
|
|
webpackMemoryOptimizations: true,
|
|
}
|
|
};
|
|
|
|
export default nextConfig;
|