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



这就是我的配置文件现在的样子。(见图)

是否有机会在不同的路径上添加第二个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

相关内容

  • 没有找到相关文章

最新更新