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], };