Files
kan/next.config.mjs
2023-11-22 19:17:27 +00:00

33 lines
652 B
JavaScript

/* eslint-disable @typescript-eslint/require-await */
/**
* 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: false,
images: {
remotePatterns: [
{
protocol: "https",
hostname: "storage.googleapis.com",
port: "",
pathname: "/**",
},
],
},
redirects: async () => {
return [
{
source: "/",
destination: "/boards",
permanent: true,
},
];
},
};
export default config;