Skip to content

Commit a1268ff

Browse files
committed
docs: Add TailwindCSS configuration documentation
1 parent 83a6576 commit a1268ff

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,18 @@ await start(manifest, {
3636
});
3737
```
3838

39+
Your `tailwind.config.ts` file should export a valid TailwindCSS configuration object. For more information, see the [TailwindCSS documentation](https://tailwindcss.com/docs/configuration).
40+
41+
```ts
42+
export default {
43+
content: [
44+
"./components/**/*.{js,ts,jsx,tsx,mdx}",
45+
"./islands/**/*.{js,ts,jsx,tsx,mdx}",
46+
"./routes/**/*.{js,ts,jsx,tsx,mdx}",
47+
],
48+
};
49+
```
50+
3951
## License
4052

4153
[MIT](./LICENSE)

0 commit comments

Comments
 (0)