mirror of
https://github.com/walkxcode/dashboard-icons.git
synced 2025-11-27 07:08:41 +01:00
17 lines
310 B
TypeScript
17 lines
310 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
cacheComponents: false,
|
|
images: {
|
|
remotePatterns: [
|
|
new URL(
|
|
"https://pb.dashboardicons.com/**",
|
|
),
|
|
new URL(
|
|
"https://cdn.jsdelivr.net/gh/homarr-labs/dashboard-icons/**",
|
|
),
|
|
],
|
|
},
|
|
};
|
|
|
|
export default nextConfig |