mirror of
https://github.com/fergalmoran/mixyboos.git
synced 2026-01-06 08:54:51 +00:00
19 lines
407 B
JavaScript
19 lines
407 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.mjs");
|
|
|
|
/** @type {import("next").NextConfig} */
|
|
const config = {
|
|
reactStrictMode: true,
|
|
images: {
|
|
domains: [
|
|
"cloudflare-ipfs.com",
|
|
"avatars.githubusercontent.com",
|
|
"mixyboos.twic.pics",
|
|
],
|
|
},
|
|
};
|
|
export default config;
|