mirror of
https://github.com/towfiqi/serpbear
synced 2025-06-26 18:15:54 +00:00
- 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.
26 lines
497 B
JavaScript
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: [],
|
|
};
|