generated from Fascinated/nextjs-13-template-with-tailwindcss
Fascinated
0aeb7bea4b
All checks were successful
Publish Docker Image / docker (push) Successful in 1m50s
16 lines
252 B
JavaScript
16 lines
252 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
images: {
|
|
remotePatterns: [
|
|
{
|
|
protocol: "https",
|
|
hostname: "**",
|
|
port: "",
|
|
pathname: "/**",
|
|
},
|
|
],
|
|
},
|
|
};
|
|
|
|
module.exports = nextConfig;
|