teableio_teable/packages/sdk/tailwind.config.cjs
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

22 lines
565 B
JavaScript

const { join } = require('path');
const uiConfig = require('@teable/ui-lib/ui.config.cjs');
const sdkPath = join(__dirname, './src/**/*.{js,ts,jsx,tsx}');
const buildFilePath = join(__dirname, './dist/**/*.{js,ts,jsx,tsx}');
/** @type {import('tailwindcss').Config} */
module.exports = uiConfig({
content: [sdkPath, buildFilePath],
darkMode: ['class'],
theme: {
extend: {
keyframes: {
scale: {
'0%, 100%': { transform: 'scale(1)' },
'50%': { transform: 'scale(0.8)' },
},
},
},
},
plugins: [],
});