mirror of
https://github.com/logos-storage/das-research.git
synced 2026-01-11 01:23:08 +00:00
10 lines
177 B
TypeScript
10 lines
177 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
/* config options here */
|
|
images: {
|
|
domains: ['localhost'],
|
|
},
|
|
};
|
|
|
|
export default nextConfig; |