7
All checks were successful
Deploy Website / deploy (push) Successful in 2m0s

This commit is contained in:
Lee 2024-10-04 21:37:00 +01:00
parent 60ceb4f4ab
commit 88e0e95e9f
4 changed files with 8 additions and 12 deletions

@ -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"
}
} }

@ -1,11 +1,5 @@
import { withSentryConfig } from "@sentry/nextjs"; import { withSentryConfig } from "@sentry/nextjs";
import { format } from "@formkit/tempo"; 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} */ /** @type {import('next').NextConfig} */
const nextConfig = { const nextConfig = {
@ -20,8 +14,7 @@ const nextConfig = {
], ],
}, },
env: { env: {
NEXT_PUBLIC_BUILD_ID: NEXT_PUBLIC_BUILD_ID: process.env.GIT_REV || "dev",
process.env.GIT_REV || nextBuildId.sync({ dir: __dirname }),
NEXT_PUBLIC_BUILD_TIME: new Date().toLocaleDateString("en-US", { NEXT_PUBLIC_BUILD_TIME: new Date().toLocaleDateString("en-US", {
year: "numeric", year: "numeric",
month: "long", month: "long",

@ -1,7 +1,4 @@
import { createCanvas, loadImage } from "canvas";
import { config } from "../../config"; import { config } from "../../config";
import ky from "ky";
import { extractColors } from "extract-colors";
import { cache } from "react"; import { cache } from "react";
/** /**

@ -21,6 +21,7 @@
"name": "next" "name": "next"
} }
], ],
"baseUrl": ".",
"paths": { "paths": {
"@/*": [ "@/*": [
"./src/*" "./src/*"