felia/apps/name-generator/next.config.mjs

23 lines
603 B
JavaScript
Raw Normal View History

2022-12-02 22:42:02 +00:00
// @ts-check
/**
* Run `build` or `dev` with `SKIP_ENV_VALIDATION` to skip env validation.
* This is especially useful for Docker builds.
*/
!process.env.SKIP_ENV_VALIDATION && (await import("./src/env/server.mjs"));
/** @type {import("next").NextConfig} */
const config = {
reactStrictMode: true,
swcMinify: true,
experimental: {
// Enables hot-reload and easy integration for local packages
transpilePackages: ["@acme/api", "@acme/auth", "@acme/db"],
},
// We already do linting on GH actions
eslint: {
ignoreDuringBuilds: !!process.env.CI,
},
};
export default config;