| 1234567891011121314151617 |
- /** @type {import('tailwindcss').Config} */
- module.exports = {
- // NOTE: Update this to include the paths to all files that contain Nativewind classes.
- content: ["./app/**/*.{js,jsx,ts,tsx}", "./component/**/*.{js,jsx,ts,tsx}"],
- presets: [require("nativewind/preset")],
- theme: {
- extend: {
- screens: {
- sm: '320px',
- md: '375px',
- lg: '390px',
- xl: '428px'
- }
- }
- },
- plugins: []
- };
|