* chore: restructure validation package * chore: move zod only to validation package * chore: rename packages from alparr to homarr * chore: move mantine core, dates and icons library to ui package, move most other mantine packages to seperate packages for further customization and centralization * chore: fix formatting * fix: wrong typecheck command in turbo generator * chore: fix formatting * chore: address pull request feedback * chore: fix ci check issues
35 lines
858 B
JavaScript
35 lines
858 B
JavaScript
// Importing env files here to validate on build
|
|
import "./src/env.mjs";
|
|
import "@homarr/auth/env.mjs";
|
|
|
|
/** @type {import("next").NextConfig} */
|
|
const config = {
|
|
reactStrictMode: true,
|
|
/** Enables hot reloading for local packages without a build step */
|
|
transpilePackages: [
|
|
"@homarr/api",
|
|
"@homarr/auth",
|
|
"@homarr/db",
|
|
"@homarr/ui",
|
|
"@homarr/validation",
|
|
"@homarr/form",
|
|
"@homarr/notifications",
|
|
"@homarr/spotlight",
|
|
],
|
|
/** We already do linting and typechecking as separate tasks in CI */
|
|
eslint: { ignoreDuringBuilds: true },
|
|
typescript: { ignoreBuildErrors: true },
|
|
experimental: {
|
|
optimizePackageImports: [
|
|
"@mantine/core",
|
|
"@mantine/hooks",
|
|
"@mantine/dates",
|
|
"@mantine/notifications",
|
|
"@mantine/form",
|
|
"@mantine/spotlight",
|
|
],
|
|
},
|
|
};
|
|
|
|
export default config;
|