tailwind.config.js 287 B

12345678910
  1. /** @type {import('tailwindcss').Config} */
  2. module.exports = {
  3. // NOTE: Update this to include the paths to all files that contain Nativewind classes.
  4. content: ["./src/**/*.{js,jsx,ts,tsx}"],
  5. presets: [require("nativewind/preset")],
  6. theme: {
  7. extend: {},
  8. },
  9. plugins: [],
  10. }