mirror of
https://github.com/ajnart/homarr.git
synced 2026-01-30 03:09:19 +01:00
* wip: add crud for services and integrations * feat: remove services * feat: move integration definitions to homarr/definitions, add temporary test connection solution without actual request * feat: add integration count badge * feat: add translation for integrations * feat: add notifications and translate them * feat: add notice to integration forms about test connection * chore: fix ci check issues * feat: add confirm modals for integration deletion and secret card cancellation, change ordering for list page, add name property to integrations * refactor: move revalidate path action * chore: fix ci check issues * chore: install missing dependencies * chore: fix ci check issues * chore: address pull request feedback
38 lines
910 B
JavaScript
38 lines
910 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",
|
|
],
|
|
},
|
|
images: {
|
|
domains: ["cdn.jsdelivr.net"],
|
|
},
|
|
};
|
|
|
|
export default config;
|