deal/tailwind.config.js
2026-05-29 17:53:57 +03:00

41 lines
769 B
JavaScript

module.exports = {
prefix: '',
important: '#deal-app',
corePlugins: {
preflight: false,
base: false,
},
content: [
'./index.html',
'./src/**/*.{vue,js,ts}',
'./src/assets/css/**/*.{css}',
],
safelist: [
'space-x-1',
'space-x-2',
'space-x-3',
'space-x-4',
'space-x-5',
'space-x-6',
'space-x-7',
'space-x-8',
'space-x-9',
'space-x-10',
'bg-green-500',
'bg-white',
'flex',
'items-center',
'justify-between',
'cursor-pointer',
'w-1/2',
'p-2',
'mt-4',
'ml-4',
'ml-auto',
],
theme: {
extend: {},
},
plugins: [],
};