const path = require("path"); const resolve = (p) => { return path.resolve(__dirname, p); }; /** @type {import('tailwindcss').Config} */ module.exports = { content: ["./index.html", "./**/*.vue"].map(resolve), theme: { extend: {}, }, plugins: [], corePlugins: { preflight: false, }, };