mirror of
https://github.com/teableio/teable.git
synced 2026-01-15 01:42:23 +08:00
* refactor: official file organization * fix: reset query error in plugin * fix: next types * fix: restore plugin position * fix: plugin header flash
10 lines
155 B
JavaScript
10 lines
155 B
JavaScript
const path = require('path');
|
|
|
|
module.exports = {
|
|
plugins: {
|
|
tailwindcss: {
|
|
config: path.join(__dirname, 'tailwind.config.ts'),
|
|
},
|
|
},
|
|
};
|