const defaultTheme = require('tailwindcss/defaultTheme'); module.exports = { content: [ "./index.html", "./src/**/*.{vue,js,ts}", ], theme: { extend: { fontFamily: { sans: ['Inter var', ...defaultTheme.fontFamily.sans], }, aspectRatio: { 'A4': '1 / 1.4142', } }, }, plugins: [ require('@tailwindcss/forms'), ], }