diff options
| author | Jfriedli | 2021-03-18 09:25:11 +0100 |
|---|---|---|
| committer | Jfriedli | 2021-03-18 09:25:11 +0100 |
| commit | 170d77b3ecb2d0c5c35263a2f5598002af599a43 (patch) | |
| tree | 96cc9e252270e97163b535d7efe7623fc59964f8 /tailwind.config.js | |
| parent | 9a0a693c5467c245c9cae4245da7291b2799b2ef (diff) | |
installed tailwind and removed old css/js
Diffstat (limited to '')
| -rw-r--r-- | tailwind.config.js | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/tailwind.config.js b/tailwind.config.js new file mode 100644 index 0000000..ce94ce1 --- /dev/null +++ b/tailwind.config.js | |||
| @@ -0,0 +1,18 @@ | |||
| 1 | const defaultTheme = require('tailwindcss/defaultTheme') | ||
| 2 | |||
| 3 | module.exports = { | ||
| 4 | future: { | ||
| 5 | // removeDeprecatedGapUtilities: true, | ||
| 6 | // purgeLayersByDefault: true, | ||
| 7 | }, | ||
| 8 | purge: [], | ||
| 9 | theme: { | ||
| 10 | extend: { | ||
| 11 | fontFamily: { | ||
| 12 | sans: ['Inter var', ...defaultTheme.fontFamily.sans], | ||
| 13 | }, | ||
| 14 | }, | ||
| 15 | }, | ||
| 16 | variants: {}, | ||
| 17 | plugins: [], | ||
| 18 | } | ||
