mirror of
https://github.com/fergalmoran/opengifame.git
synced 2025-12-22 09:38:44 +00:00
22 lines
409 B
JavaScript
22 lines
409 B
JavaScript
/**
|
|
* Run `build` or `dev` with `SKIP_ENV_VALIDATION` to skip env validation. This is especially useful
|
|
* for Docker builds.
|
|
*/
|
|
await import("./src/env.js");
|
|
|
|
/** @type {import("next").NextConfig} */
|
|
const config = {
|
|
images: {
|
|
remotePatterns: [
|
|
{
|
|
hostname: "avatars.githubusercontent.com",
|
|
},
|
|
{
|
|
hostname: "localhost",
|
|
},
|
|
],
|
|
},
|
|
};
|
|
|
|
export default config;
|