Gibs_Website/next.config.js

20 lines
388 B
JavaScript
Raw Normal View History

2024-06-03 16:29:04 -05:00
/**
* 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} */
2024-06-13 15:40:35 -05:00
const config = {
images: {
remotePatterns: [
{
protocol: "https",
hostname: "avatars.githubusercontent.com",
},
],
},
};
2024-06-03 16:29:04 -05:00
export default config;