xref: /expo/docs/tailwind.config.cjs (revision f4b1168b)
1const expoTheme = require('@expo/styleguide/tailwind');
2
3/** @type {import('tailwindcss').Config} */
4module.exports = {
5  content: [
6    './pages/**/*.{js,ts,jsx,tsx}',
7    './components/**/*.{js,ts,jsx,tsx}',
8    './ui/foundations/**/*.{js,ts,jsx,tsx}',
9    './ui/components/**/*.{js,ts,jsx,tsx}',
10    './node_modules/@expo/styleguide/dist/**/*.{js,ts,jsx,tsx}',
11  ],
12  plugins: [],
13  ...expoTheme,
14};
15