1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-09-13 06:05:32 -04:00

Update import paths in next.config.ts to use relative paths for remark and rehype plugins, ensuring consistency in module resolution.

This commit is contained in:
2025-09-08 11:30:39 -04:00
parent 2fa9b73f8d
commit 19960ca2b0

View File

@@ -1,10 +1,10 @@
import * as remarkPlugins from "@/lib/remark";
import * as rehypePlugins from "@/lib/rehype";
import * as remarkPlugins from "./lib/remark";
import * as rehypePlugins from "./lib/rehype";
import type { NextConfig } from "next";
// check environment variables at build time
// https://env.t3.gg/docs/nextjs#validate-schema-on-build-(recommended)
import "@/lib/env";
import "./lib/env";
const nextConfig = {
reactStrictMode: true,