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:
@@ -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,
|
||||
|
Reference in New Issue
Block a user