这就是我的配置文件现在的样子。(见图)
是否有机会在不同的路径上添加第二个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