-
-
Notifications
You must be signed in to change notification settings - Fork 102
/
tailwind.config.js
30 lines (29 loc) · 1.03 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
//--------------------------------------------------------------------------
// Tailwind configuration
//--------------------------------------------------------------------------
//
// Use the Tailwind configuration to completely define the current sites
// design system by adding and extending to Tailwinds default utility
// classes. Various aspects of the config are split inmultiple files.
//
/** @type {import('tailwindcss').Config} */
module.exports = {
// The various configurable Tailwind configuration files.
presets: [
require('tailwindcss/defaultConfig'),
require('./tailwind.config.typography.js'),
require('./tailwind.config.peak.js'),
require('./tailwind.config.site.js'),
],
// Configure files to scan for utility classes (JIT).
content: [
'./resources/views/**/*.blade.php',
'./resources/views/**/*.html',
'./resources/js/**/*.js',
'./content/**/*.md',
'./vendor/studio1902/**/*.blade.php',
'./vendor/studio1902/**/*.html',
'./vendor/studio1902/**/*.js',
],
safelist: []
}