-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathtailwind.config.cjs
34 lines (33 loc) · 936 Bytes
/
tailwind.config.cjs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
// const resolve = require('path').resolve
// const plugin = require('tailwindcss/plugin')
// const defaultTheme = require('tailwindcss/defaultTheme')
/** @type {import('tailwindcss').Config} */
module.exports = {
// content: [resolve(__dirname, 'index.html'), resolve(__dirname, 'src/**/*.{vue,ts}')],
content: [
"./index.html",
"./src/**/*.{vue,js,ts,jsx,tsx}",
'node_modules/preline/dist/*.js',
],
theme: {
extend: {
aspectRatio: {
'3/4': '3 / 4',
},
},
// extend: {
// // here's how to extend fonts if needed
// fontFamily: {
// sans: [...defaultTheme.fontFamily.sans],
// },
// },
},
plugins: [
require('@tailwindcss/typography'),
require('preline/plugin'),
// require('@tailwindcss/aspect-ratio'),
// require('@tailwindcss/line-clamp'),
// require('@tailwindcss/typography'),
// require('@tailwindcss/forms'),
],
}