We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dc3a7cb commit 46c685cCopy full SHA for 46c685c
project/src/live.server.scala
@@ -260,7 +260,7 @@ object LiveServer extends IOApp:
260
val indexLessFile = styles / "index.less"
261
(for
262
indexLessExists <- Files[IO].exists(indexLessFile)
263
- _ <- IO.raiseUnless(indexLessExists)(CliValidationError(s"index.html doesn't exist in $styles"))
+ _ <- IO.raiseUnless(indexLessExists)(CliValidationError(s"index.less doesn't exist in $styles"))
264
indexLessIsAFile <- Files[IO].isRegularFile(indexLessFile)
265
_ <- IO.raiseUnless(indexLessIsAFile)(CliValidationError(s"$indexLessFile is not a file"))
266
yield IndexHtmlConfig.StylesOnly(styles).some).toResource
0 commit comments