From deee29c6984578b1ef28ca4870cffd691479d4d1 Mon Sep 17 00:00:00 2001 From: Ezequiel Parziale Date: Mon, 18 Nov 2024 10:37:01 -0300 Subject: [PATCH] :truck: chore: move next config to ts --- next.config.mjs => next.config.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) rename next.config.mjs => next.config.ts (60%) diff --git a/next.config.mjs b/next.config.ts similarity index 60% rename from next.config.mjs rename to next.config.ts index 20cec90..3714c00 100644 --- a/next.config.mjs +++ b/next.config.ts @@ -1,5 +1,6 @@ -/** @type {import('next').NextConfig} */ -const nextConfig = { +import type { NextConfig } from "next" + +const nextConfig: NextConfig = { images: { remotePatterns: [{ hostname: "raw.githubusercontent.com" }], },