das-research/frontend/next.config.ts
2025-03-12 19:35:09 -06:00

10 lines
177 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
/* config options here */
images: {
domains: ['localhost'],
},
};
export default nextConfig;