Forked from prestashop-target-conditions Renamed all references from target-conditions to entity-selector
19 lines
382 B
JavaScript
Executable File
19 lines
382 B
JavaScript
Executable File
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
prefix: 'tw-',
|
|
content: [
|
|
'./src/**/*.php',
|
|
'./assets/js/admin/**/*.js',
|
|
// Also scan consuming modules' templates
|
|
'../../../views/templates/admin/**/*.tpl',
|
|
'../../../controllers/admin/**/*.php',
|
|
],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [],
|
|
corePlugins: {
|
|
preflight: false,
|
|
},
|
|
}
|