serpbear/tailwind.config.js
towfiqi 2a1fc0e43d feat: Adds keyword search volume data feature for tracked keywords.
- Adds a volume field in the keyword table.
- Adds a button in the Adwords Integration screen to update all the tracked keywords.
- When a new keyword is added, the volume data is automatically fetched.
- Adds ability to sort keywords based on search volume.
2024-03-01 10:52:45 +06:00

26 lines
497 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
purge: {
content: [
'./pages/**/*.{js,ts,jsx,tsx}',
'./components/**/*.{js,ts,jsx,tsx}',
],
},
content: [
'./pages/**/*.{js,ts,jsx,tsx}',
'./components/**/*.{js,ts,jsx,tsx}',
],
safelist: [
'max-h-48',
'w-[150px]',
'w-[240px]',
'min-w-[270px]',
'min-w-[180px]',
'max-w-[180px]',
],
theme: {
extend: {},
},
plugins: [],
};