1/**
2 * Run `build` or `dev` with `SKIP_ENV_VALIDATION` to skip env validation. This is especially useful
3 * for Docker builds.
4 */
5
6/** @type {import("next").NextConfig} */
7const config = {
8 images: {
9 remotePatterns: [
10 {
11 hostname: "*.keii.dev",
12 },
13 ],
14 },
15};
16
17export default config;