kopia lustrzana https://github.com/wagtail/wagtail
19 wiersze
403 B
JavaScript
19 wiersze
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,
|
|
},
|
|
};
|