Files
RN_Template/RN_TEMPLATE/tailwind.config.js

14 lines
282 B
JavaScript
Raw Permalink Normal View History

2026-02-05 13:16:05 +08:00
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./app/**/*.{js,jsx,ts,tsx}",
"./src/**/*.{js,jsx,ts,tsx}",
"./components/**/*.{js,jsx,ts,tsx}",
],
presets: [require("nativewind/preset")],
theme: {
extend: {},
},
plugins: [],
}