Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions .eslintrc.json

This file was deleted.

2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:20-alpine3.20 AS build
FROM node:24-alpine AS build
WORKDIR /app

COPY package*.json ./
Expand Down
20 changes: 20 additions & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
import nextVitals from 'eslint-config-next/core-web-vitals';
import nextTs from 'eslint-config-next/typescript';

const eslintConfig = [
{
ignores: ['node_modules/**', '.next/**', 'out/**', 'build/**', 'next-env.d.ts'],
},

...nextVitals,
...nextTs,

{
rules: {
'@typescript-eslint/no-explicit-any': 'warn',
'react-hooks/set-state-in-effect': 'warn',
},
},
];

export default eslintConfig;
4 changes: 1 addition & 3 deletions next.config.mjs
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
experimental: {
reactCompiler: true,
},
reactCompiler: true,
async redirects() {
return [
{
Expand Down
Loading
Loading