bravo68web-portfolio-nextjs/next.config.js

18 lines
302 B
JavaScript
Raw Permalink 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',
2023-11-27 14:36:33 +00:00
hostname: 'itsmebravo.dev',
2023-06-13 05:07:09 +00:00
port: '',
pathname: '/images/**/*.{jpg,jpeg,png,svg,gif,webp}',
},
],
},
};
2022-05-05 11:42:49 +00:00
module.exports = moduleExports;