1234567891011121314151617 |
- /** @type {import('tailwindcss').Config} */
- module.exports = {
- content: [
- "./components/**/*.{js,vue,ts}",
- "./layouts/**/*.vue",
- "./pages/**/*.vue",
- "./plugins/**/*.{js,ts}",
- "./app.vue",
- "./error.vue"
- ],
- theme: {
- extend: {},
- },
- plugins: [
- require('@tailwindcss/typography'),
- ],
- }
|