Glob Pattern ↔ regex-like wildcard Syntax to match dir/filename
Source: globster.xyz/
aka Glob
*
Glob to match anything EXCEPT slash || hidden
**
Glob to match ≥0 dir
{a,b}
Brace Expansion Glob to list match options as CSV
?
Glob to match single char only
[abc]
Glob to match ONE char in set
[abc] cf Regex Character Class
[a-z]
Glob to match ONE char in class range
References
Globbing↔ Algo to match Wildcard Character pattern ie Glob || regexcontent: string[]↔ MUST to set file/folder to scan via Glob. set entry _index.html & any script files using Tailwind.storybook/main.js↔ storybook config file to set Glob to detect new stories Story Addons & use index.csspurge: []↔ to set Glob Pattern to remove unused CSS styles from final bundlesetup [tailwind.config.cjs](tailwind-config-cjs)↔ add Glob to include/exclude dirpath/filetype & define custom utilities
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{html,js}"],
theme: {
extend: {},
},
plugins: [],
}