|
1 |
| -import type { Config } from "tailwindcss"; |
| 1 | +import type { Config } from 'tailwindcss'; |
2 | 2 |
|
3 | 3 | const config: Config = {
|
4 | 4 | content: [
|
5 |
| - "./pages/**/*.{js,ts,jsx,tsx,mdx}", |
6 |
| - "./components/**/*.{js,ts,jsx,tsx,mdx}", |
7 |
| - "./app/**/*.{js,ts,jsx,tsx,mdx}", |
| 5 | + './pages/**/*.{js,ts,jsx,tsx,mdx}', |
| 6 | + './components/**/*.{js,ts,jsx,tsx,mdx}', |
| 7 | + './app/**/*.{js,ts,jsx,tsx,mdx}', |
8 | 8 | ],
|
9 | 9 | theme: {
|
10 | 10 | extend: {
|
11 | 11 | backgroundImage: {
|
12 |
| - "gradient-radial": "radial-gradient(var(--tw-gradient-stops))", |
13 |
| - "gradient-conic": |
14 |
| - "conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))", |
| 12 | + 'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))', |
| 13 | + 'gradient-conic': 'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))', |
15 | 14 | },
|
16 | 15 | },
|
17 | 16 | },
|
18 |
| - plugins: [require("@tailwindcss/typography")], |
| 17 | + plugins: [require('@tailwindcss/typography')], |
19 | 18 | };
|
20 | 19 | export default config;
|
0 commit comments