Skip to content

Commit

Permalink
fix: undo default auth server network
Browse files Browse the repository at this point in the history
  • Loading branch information
JackHamer09 committed Dec 3, 2024
1 parent dca8992 commit e284fb3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/auth-server/nuxt.config.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { defineNuxtConfig } from "nuxt/config";
import { zksyncSepoliaTestnet } from "viem/chains";
import { zksyncInMemoryNode } from "viem/chains";

// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
Expand Down Expand Up @@ -54,7 +54,7 @@ export default defineNuxtConfig({
},
runtimeConfig: {
public: {
chainId: parseInt(process.env.NUXT_PUBLIC_DEFAULT_CHAIN_ID || "") || zksyncSepoliaTestnet.id,
chainId: parseInt(process.env.NUXT_PUBLIC_DEFAULT_CHAIN_ID || "") || zksyncInMemoryNode.id,
},
},
});

0 comments on commit e284fb3

Please sign in to comment.