mirror of
https://github.com/teableio/teable.git
synced 2026-02-19 17:19:50 +08:00
10 lines
210 B
JavaScript
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;
|