This prerelease fixes an issue with how user CSS was merged with the default to-be-compiled Tailwind CSS string.
The problem was that doing this:
css = await fs.readFile(path.resolve(userFilePath), 'utf8') + css
... resulted in the compiled CSS containing @tailwind
directives, which were in turn preventing the Juice CSS inliner from working correctly (for example, m-0
classes were never inlined; possibly others, too).
- fix: appending user css file d72a289