15 lines
305 B
JavaScript
15 lines
305 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
images: {
|
|
remotePatterns: [
|
|
{
|
|
protocol: "https",
|
|
hostname: "a2x.pub",
|
|
port: "",
|
|
pathname: "/*"
|
|
}
|
|
]
|
|
}
|
|
};
|
|
|
|
export default nextConfig; |