bravo68web-portfolio-nextjs/next.config.js

18 lines
301 B
JavaScript
Raw Normal View History

2022-05-02 14:33:09 +00:00
const moduleExports = {
2023-06-12 08:03:13 +00:00
reactStrictMode: true,
compiler: {
styledComponents: true,
},
2023-06-13 05:07:09 +00:00
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'bravo68web.me',
port: '',
pathname: '/images/**/*.{jpg,jpeg,png,svg,gif,webp}',
},
],
},
};
2022-05-05 11:42:49 +00:00
module.exports = moduleExports;