tailwind.config.js 315 B

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