diff --git a/website/.eslintrc.json b/website/.eslintrc.json index 3722418..606f9d0 100644 --- a/website/.eslintrc.json +++ b/website/.eslintrc.json @@ -1,3 +1,8 @@ { - "extends": ["next/core-web-vitals", "next/typescript"] + "extends": ["next/core-web-vitals", "next/typescript"], + "rules": { + "@typescript-eslint/no-unused-vars": "off", + "@typescript-eslint/no-unused-expressions": "off", + "@typescript-eslint/no-empty-object-type": "off" + } } diff --git a/website/next.config.mjs b/website/next.config.mjs index 956dd19..c6b7f3e 100644 --- a/website/next.config.mjs +++ b/website/next.config.mjs @@ -1,11 +1,5 @@ import { withSentryConfig } from "@sentry/nextjs"; import { format } from "@formkit/tempo"; -import nextBuildId from "next-build-id"; -import path from "path"; -import { fileURLToPath } from "url"; - -const __filename = fileURLToPath(import.meta.url); // get the resolved path to the file -const __dirname = path.dirname(__filename); // get the name of the directory /** @type {import('next').NextConfig} */ const nextConfig = { @@ -20,8 +14,7 @@ const nextConfig = { ], }, env: { - NEXT_PUBLIC_BUILD_ID: - process.env.GIT_REV || nextBuildId.sync({ dir: __dirname }), + NEXT_PUBLIC_BUILD_ID: process.env.GIT_REV || "dev", NEXT_PUBLIC_BUILD_TIME: new Date().toLocaleDateString("en-US", { year: "numeric", month: "long", diff --git a/website/src/common/image-utils.ts b/website/src/common/image-utils.ts index cdedde0..ecb4c52 100644 --- a/website/src/common/image-utils.ts +++ b/website/src/common/image-utils.ts @@ -1,7 +1,4 @@ -import { createCanvas, loadImage } from "canvas"; import { config } from "../../config"; -import ky from "ky"; -import { extractColors } from "extract-colors"; import { cache } from "react"; /** diff --git a/website/tsconfig.json b/website/tsconfig.json index d6bbd13..7a828c0 100644 --- a/website/tsconfig.json +++ b/website/tsconfig.json @@ -21,6 +21,7 @@ "name": "next" } ], + "baseUrl": ".", "paths": { "@/*": [ "./src/*"