Skip to content

Commit 932e806

Browse files
committed
change how we pass client id in nextjs app
1 parent 2f50931 commit 932e806

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/civic-auth/nextjs/next.config.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ const nextConfig: NextConfig = {
55
/* config options here */
66
};
77
const withCivicAuth = createCivicAuthPlugin({
8-
clientId: `${process.env.CLIENT_ID}`
8+
clientId: process.env.CLIENT_ID as string
99
});
1010

1111
export default withCivicAuth(nextConfig);

0 commit comments

Comments
 (0)