feat: nix build enabled

This commit is contained in:
efim
2023-06-26 20:52:44 +00:00
parent ef63cd474f
commit e7594ef2eb
6 changed files with 117 additions and 19 deletions

View File

@@ -33,10 +33,10 @@ case class AppRoutes()(implicit cc: castor.Context,
def index() = Page.wholePageMarkup
@cask.staticFiles("/dist") // this is what path gets matched
def distFiles() = "dist" // this is os path where files are looked up, for the generated files
def distFiles() = "dist"
@cask.staticFiles("/public") // this is what path gets matched
def publicFiles() = "public" // this is os path where files are looked up, for the committed files
def publicFiles() = "public"
initialize()
}