mirror of
https://github.com/oven-sh/bun
synced 2026-02-09 10:28:47 +00:00
* fix a few ipc issues * a * my own revisions * remove none as a valid type * a * fix windows build * remove comment * make it work !!!!!!!! * a * formatter nonsense * blah * huge update refactor * awa * wow * okay
20 lines
495 B
TypeScript
20 lines
495 B
TypeScript
import type { Config } from "tailwindcss";
|
|
|
|
const config: Config = {
|
|
content: [
|
|
// './src/pages/**/*.{js,ts,jsx,tsx,mdx}',
|
|
"./src/**/*.{js,ts,jsx,tsx,mdx}",
|
|
// './src/app/**/*.{js,ts,jsx,tsx,mdx}',
|
|
],
|
|
theme: {
|
|
extend: {
|
|
backgroundImage: {
|
|
"gradient-radial": "radial-gradient(var(--tw-gradient-stops))",
|
|
"gradient-conic": "conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))",
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|
|
export default config;
|