tailwind.config.js 511 B

1234567891011121314151617
  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: ["./app/**/*.{js,jsx,ts,tsx}", "./component/**/*.{js,jsx,ts,tsx}"],
  5. presets: [require("nativewind/preset")],
  6. theme: {
  7. extend: {
  8. screens: {
  9. sm: '320px',
  10. md: '375px',
  11. lg: '390px',
  12. xl: '428px'
  13. }
  14. }
  15. },
  16. plugins: []
  17. };