18 lines
353 B
TypeScript
18 lines
353 B
TypeScript
import type { NextConfig } from "next";
|
|
import { DATA } from "./app/resume";
|
|
|
|
const nextConfig: NextConfig = {
|
|
/* your other config options here */
|
|
output: 'standalone',
|
|
images: {
|
|
remotePatterns: [
|
|
{
|
|
protocol: "https",
|
|
hostname: `*.${DATA.domain}`,
|
|
},
|
|
],
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|