chore: configure ESLint and fix Docker build issues

- Add TypeScript ESLint parser and plugin

- Disable unnecessary ESLint rules for development

- Fix unescaped entities in settings page

- Update Docker configuration for development
This commit is contained in:
Julien Froidefond
2025-02-12 14:47:05 +01:00
parent 780dfcabba
commit f0ae2f4478
8 changed files with 145 additions and 11 deletions

View File

@@ -1,6 +1,8 @@
import { NextResponse } from "next/server";
import { HomeService } from "@/lib/services/home.service";
export const dynamic = "force-dynamic";
export async function GET() {
try {
const data = await HomeService.getHomeData();

View File

@@ -1,6 +1,8 @@
import { NextResponse } from "next/server";
import { LibraryService } from "@/lib/services/library.service";
export const dynamic = "force-dynamic";
export async function GET() {
try {
const libraries = await LibraryService.getLibraries();