mirror of
https://github.com/teableio/teable.git
synced 2026-02-19 17:19:50 +08:00
22 lines
565 B
JavaScript
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: [],
|
|
});
|