mirror of
https://github.com/jxxghp/MoviePilot-Frontend.git
synced 2026-05-07 05:12:48 +08:00
18 lines
328 B
JavaScript
18 lines
328 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
future: {
|
|
hoverOnlyWhenSupported: true,
|
|
},
|
|
corePlugins: {
|
|
aspectRatio: false,
|
|
},
|
|
plugins: [
|
|
require('@tailwindcss/aspect-ratio'),
|
|
// ...
|
|
],
|
|
}
|