mirror of
https://github.com/ajnart/homarr.git
synced 2026-02-27 00:40:58 +01:00
16 lines
501 B
JavaScript
16 lines
501 B
JavaScript
// Importing env files here to validate on build
|
|
import "./src/env.mjs";
|
|
import "@acme/auth/env.mjs";
|
|
|
|
/** @type {import("next").NextConfig} */
|
|
const config = {
|
|
reactStrictMode: true,
|
|
/** Enables hot reloading for local packages without a build step */
|
|
transpilePackages: ["@acme/api", "@acme/auth", "@acme/db"],
|
|
/** We already do linting and typechecking as separate tasks in CI */
|
|
eslint: { ignoreDuringBuilds: true },
|
|
typescript: { ignoreBuildErrors: true },
|
|
};
|
|
|
|
export default config;
|