15 lines
337 B
JavaScript
15 lines
337 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
// NOTE: Update this to include the paths to all files that contain Nativewind classes.
|
|
content: [
|
|
"./app/**/*.{ts,tsx}",
|
|
"./components/**/*.{ts,tsx}",
|
|
"./lib/**/*.{ts,tsx}",
|
|
],
|
|
presets: [require("nativewind/preset")],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [],
|
|
};
|