Skip to content

Commit

Permalink
πŸ› remove node: prefix (why is this needed ?)
Browse files Browse the repository at this point in the history
  • Loading branch information
fredk3 committed Apr 4, 2024
1 parent ebff38a commit eff5845
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/web/app/api/local-chains/route.ts
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
import { NextRequest } from "next/server";
import { FileSystemCacheDEV } from "~/lib/fs-cache-dev";
import fs from "node:fs/promises";
import fs from "fs/promises";
import { env } from "~/env";
import { localChainFormSchema } from "~/app/(register)/register/local-chain/local-chain-form-schema";
import slugify from "@sindresorhus/slugify";
import type { SingleNetwork } from "~/lib/network";
import { CACHE_KEYS } from "~/lib/cache-keys";
import { generateRandomString } from "~/lib/shared-utils";
import crypto from "node:crypto";
import crypto from "crypto";

export const runtime = "nodejs";
export const dynamic = "force-dynamic";
Expand Down

0 comments on commit eff5845

Please sign in to comment.