如何在 "tailwind.config.js" 中添加 2 html 路径?尾风

How can I add 2 html paths in my "tailwind.config.js"? Tailwindcss

This is, how my config file is right now. (see picture)

是否有机会在不同的路径上添加第二个 html 文件?实际路径是content: ["public/index.html"],。是否可以添加 html 路径,例如:content: ["public/index.html; public/info/contact.html"],?

content 值是一个字符串数组,因此您可以尝试:

content: ['public/index.html', 'public/info/contact.html']

您还可以使用 glob 模式来包含 public.

下的所有文件
content: ['./public/**/*.html']

更多信息:https://tailwindcss.com/docs/content-configuration