Bieber 4f4c0f2824
[sync] Fix Sentry Release (T1750) (#1094) (#2471)
Synced from teableio/teable-ee@d43bb45

Co-authored-by: teable-bot <bot@teable.io>
2026-01-22 18:13:14 +08:00

10 lines
210 B
JavaScript

const deepMerge = require('deepmerge');
const uiConfig = require('./tailwind.config.cjs');
function wrapper(tailwindConfig) {
return deepMerge({ ...tailwindConfig }, uiConfig);
}
module.exports = wrapper;