28 lines
531 B
TypeScript
28 lines
531 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
output: "standalone",
|
|
images: {
|
|
loader: "custom",
|
|
loaderFile: "./lib/openinary-loader.ts",
|
|
remotePatterns: [
|
|
{
|
|
protocol: 'https',
|
|
hostname: 'images.unsplash.com',
|
|
},
|
|
{
|
|
protocol: 'https',
|
|
hostname: 'res.cloudinary.com',
|
|
},
|
|
],
|
|
},
|
|
experimental: {
|
|
turbopack: {
|
|
root: "C:/Users/ayris.dev/kite",
|
|
},
|
|
},
|
|
/* other config options here */
|
|
};
|
|
|
|
export default nextConfig;
|