generated from Uninen/vite-ts-tailwind-starter
-
Notifications
You must be signed in to change notification settings - Fork 2
/
tailwind.config.js
37 lines (36 loc) · 1.1 KB
/
tailwind.config.js
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
35
36
37
const plugin = require('tailwindcss/plugin')
// const defaultTheme = require('tailwindcss/defaultTheme')
/** @type {import('tailwindcss').Config} */
module.exports = {
content: {
enabled: process.env.NODE_ENV === 'production',
content: ['./index.html', './src/**/*.{vue,ts}'],
},
// theme: {
// extend: {
// // here's how to extend fonts if needed
// fontFamily: {
// sans: [...defaultTheme.fontFamily.sans],
// },
// },
// },
plugins: [
require('@tailwindcss/aspect-ratio'),
require('@tailwindcss/line-clamp'),
require('@tailwindcss/typography'),
require('@tailwindcss/forms'),
plugin(function ({ addVariant, e, postcss }) {
addVariant('firefox', ({ container, separator }) => {
const isFirefoxRule = postcss.atRule({
name: '-moz-document',
params: 'url-prefix()',
})
isFirefoxRule.append(container.nodes)
container.append(isFirefoxRule)
isFirefoxRule.walkRules((rule) => {
rule.selector = `.${e(`firefox${separator}${rule.selector.slice(1)}`)}`
})
})
}),
],
}