From 46b539e3e5c552016173b32b953fc9cf891274c8 Mon Sep 17 00:00:00 2001 From: Corban Riley Date: Mon, 22 Apr 2024 09:49:55 -0400 Subject: [PATCH] No longer require transpiling packages after incorrect imports were fixed --- examples/next/next.config.mjs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/next/next.config.mjs b/examples/next/next.config.mjs index dd5e4239..6ae7e1af 100644 --- a/examples/next/next.config.mjs +++ b/examples/next/next.config.mjs @@ -1,10 +1,10 @@ import { createVanillaExtractPlugin } from '@vanilla-extract/next-plugin' -const withVanillaExtract = createVanillaExtractPlugin(); +const withVanillaExtract = createVanillaExtractPlugin() /** @type {import('next').NextConfig} */ const nextConfig = { - transpilePackages: ['@0xsequence/kit', '@0xsequence/kit-wallet', '@0xsequence/kit-connectors'] + // transpilePackages: ['@0xsequence/kit', '@0xsequence/kit-wallet', '@0xsequence/kit-connectors', '@0xsequence/checkout'] } export default withVanillaExtract(nextConfig)