DawnLauncher/packages/electron/tailwind.config.js
2023-12-18 21:13:29 +08:00

12 lines
223 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
corePlugins: {
preflight: false,
},
content: ["index.html", "./src/**/*.{html,js,ts,jsx,tsx,vue}"],
theme: {
extend: {},
},
plugins: [],
};