mirror of
https://github.com/cloudmaker97/JTL-Plugin-Template.git
synced 2025-12-06 08:28:34 +00:00
17 lines
273 B
JavaScript
17 lines
273 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [
|
|
"./src/**/*.js",
|
|
"./src/**/*.ts",
|
|
"../template/**/*.tpl",
|
|
"../../source/**/*.php",
|
|
],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [],
|
|
corePlugins: {
|
|
preflight: false,
|
|
}
|
|
}
|
|
|