We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5101d91 + 78983b0 commit 3757fecCopy full SHA for 3757fec
1 file changed
src/tailwindcss-dotnet/Cli/TailwindCli.cs
@@ -88,8 +88,8 @@ public string[] CompileCommand(string rootPath, bool debug = false)
88
IEnumerable<string> args = new[]
89
{
90
Executable(),
91
- "-i", Path.GetFullPath(Path.Combine("styles", "app.tailwind.css"), rootPath),
92
- "-o", Path.GetFullPath(Path.Combine("wwwroot", "css", "app.css"), rootPath),
+ "-i", $"\"{Path.GetFullPath(Path.Combine("styles", "app.tailwind.css"), rootPath)}\"",
+ "-o", $"\"{Path.GetFullPath(Path.Combine("wwwroot", "css", "app.css"), rootPath)}\"",
93
};
94
95
if (!debug)
0 commit comments