33 lines
652 B
JavaScript
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;
|