0
0
mirror of https://github.com/wagtail/wagtail.git synced 2024-11-24 01:57:32 +01:00
wagtail/tailwind.config.js
Steve Stein 229fbf476a
Sidebar style updates (#8118)
Co-authored-by: Thibaud Colas <thibaudcolas@gmail.com>
2022-03-23 03:27:12 +00:00

19 lines
403 B
JavaScript

const baseConfig = require('./client/tailwind.config');
/**
* Tailwind config file for Wagtail itself.
*/
module.exports = {
presets: [baseConfig],
content: [
'./wagtail/**/*.{py,html,ts,tsx}',
'./wagtail/**/static_src/**/*.js',
'./client/**/*.{js,ts,tsx}',
'./docs/**/*.{md,rst}',
],
corePlugins: {
// Risk of clashing with existing styles.
preflight: false,
},
};