-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathtailwind.config.js
26 lines (25 loc) · 955 Bytes
/
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
//--------------------------------------------------------------------------
// 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",
],
safelist: [],
};