tailwind.config.js 295 B

12345678910111213141516171819
  1. /** @type {import('tailwindcss').Config} */
  2. module.exports = {
  3. content: [
  4. "./src/**/*.{vue,js,ts,jsx,tsx}",
  5. ],
  6. important: true,
  7. theme: {
  8. extend: {
  9. backgroundColor: {
  10. "main": "#F5F5F5",
  11. }
  12. },
  13. },
  14. plugins: [],
  15. corePlugins: {
  16. preflight: false
  17. }
  18. }