From 0f1f7f913d1408352c9da21f6bfbea82a37b8458 Mon Sep 17 00:00:00 2001 From: Jordan Gensler Date: Tue, 18 Jul 2023 16:14:14 -0700 Subject: [PATCH] fix --- apps/wallet/postcss.config.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/apps/wallet/postcss.config.js b/apps/wallet/postcss.config.js index 8018eb1567947..86af57e570186 100644 --- a/apps/wallet/postcss.config.js +++ b/apps/wallet/postcss.config.js @@ -1,6 +1,9 @@ // Copyright (c) Mysten Labs, Inc. // SPDX-License-Identifier: Apache-2.0 +const postcssPresetEnv = require('postcss-preset-env'); +const tailwind = require('tailwindcss'); + module.exports = { - plugins: ['postcss-preset-env', 'tailwindcss'], + plugins: [postcssPresetEnv(), tailwind], };