21 lines
407 B
JavaScript
21 lines
407 B
JavaScript
/**
|
|
* Run `build` or `dev` with `SKIP_ENV_VALIDATION` to skip env validation. This is especially useful
|
|
* for Docker builds.
|
|
*/
|
|
import "./src/env.js";
|
|
|
|
/** @type {import("next").NextConfig} */
|
|
const config = {
|
|
async redirects() {
|
|
return [
|
|
{
|
|
source: "/account",
|
|
destination: "/",
|
|
permanent: true,
|
|
},
|
|
];
|
|
},
|
|
output: "standalone",
|
|
};
|
|
|
|
export default config;
|