Hi, I am currently developing something in vibe.d on windows but it errors out on res.render!() (this doesnt happen in linux)

source/vibe/templ/diet.d(231): Error: file "home/index.dt" cannot be found or not in a path specified with -J
source/vibe/templ/diet.d(188): Error: template instance vibe.templ.diet.readFileRec!("home/index.dt", ) error instantiating
......\AppData\Roaming\dub\packages\vibe-d-0.7.19\source\vibe\templ\diet.d(70): instantiated from here: dietParser!("home/index.dt")
......\AppData\Roaming\dub\packages\vibe-d-0.7.19\source\vibe\templ\diet.d(50): instantiated from here: compileDietFileIndent!("home/index.dt", 0, req)
......\AppData\Roaming\dub\packages\vibe-d-0.7.19\source\vibe\http\server.d(244): instantiated from here: compileDietFile!("home/index.dt", req)
source\shouthost.d(42): instantiated from here: render!("home/index.dt", req)
......\AppData\Roaming\dub\packages\vibe-d-0.7.19\source\vibe\templ\diet.d(70): Error: template instance vibe.templ.diet.dietParser!("home/index.dt") error instantiating
......\AppData\Roaming\dub\packages\vibe-d-0.7.19\source\vibe\templ\diet.d(50): instantiated from here: compileDietFileIndent!("home/index.dt", 0, req)
......\AppData\Roaming\dub\packages\vibe-d-0.7.19\source\vibe\http\server.d(244): instantiated from here: compileDietFile!("home/index.dt", req)
source\shouthost.d(42): instantiated from here: render!("home/index.dt", req)
......\AppData\Roaming\dub\packages\vibe-d-0.7.19\source\vibe\templ\diet.d(50): Error: template instance shouthost.Shouthost.index.compileDietFileIndent!("home/index.dt", 0, req) error instantiating
......\AppData\Roaming\dub\packages\vibe-d-0.7.19\source\vibe\http\server.d(244): instantiated from here: compileDietFile!("home/index.dt", req)
source\shouthost.d(42): instantiated from here: render!("home/index.dt", req)
......\AppData\Roaming\dub\packages\vibe-d-0.7.19\source\vibe\http\server.d(244): Error: template instance shouthost.Shouthost.index.compileDietFile!("home/index.dt", req) error instantiating
source\shouthost.d(42): instantiated from here: render!("home/index.dt", req)
source\shouthost.d(42): Error: template instance shouthost.Shouthost.index.render!("home/index.dt", req) error instantiating
Compiling diet template 'soon/index.dt'...
source/vibe/templ/diet.d(231): Error: file "soon/index.dt" cannot be found or not in a path specified with -J
source/vibe/templ/diet.d(188): Error: template instance vibe.templ.diet.readFileRec!("soon/index.dt", ) error instantiating
......\AppData\Roaming\dub\packages\vibe-d-0.7.19\source\vibe\templ\diet.d(70): instantiated from here: dietParser!("soon/index.dt")
......\AppData\Roaming\dub\packages\vibe-d-0.7.19\source\vibe\templ\diet.d(50): instantiated from here: compileDietFileIndent!("soon/index.dt", 0, req)
......\AppData\Roaming\dub\packages\vibe-d-0.7.19\source\vibe\http\server.d(244): instantiated from here: compileDietFile!("soon/index.dt", req)
source\shouthost.d(106): instantiated from here: render!("soon/index.dt", req)
......\AppData\Roaming\dub\packages\vibe-d-0.7.19\source\vibe\templ\diet.d(70): Error: template instance vibe.templ.diet.dietParser!("soon/index.dt") error instantiating
......\AppData\Roaming\dub\packages\vibe-d-0.7.19\source\vibe\templ\diet.d(50): instantiated from here: compileDietFileIndent!("soon/index.dt", 0, req)
......\AppData\Roaming\dub\packages\vibe-d-0.7.19\source\vibe\http\server.d(244): instantiated from here: compileDietFile!("soon/index.dt", req)
source\shouthost.d(106): instantiated from here: render!("soon/index.dt", req)
......\AppData\Roaming\dub\packages\vibe-d-0.7.19\source\vibe\templ\diet.d(50): Error: template instance shouthost.Shouthost.comingSoon.compileDietFileIndent!("soon/index.dt", 0, req) error instantiating
......\AppData\Roaming\dub\packages\vibe-d-0.7.19\source\vibe\http\server.d(244): instantiated from here: compileDietFile!("soon/index.dt", req)
source\shouthost.d(106): instantiated from here: render!("soon/index.dt", req)
......\AppData\Roaming\dub\packages\vibe-d-0.7.19\source\vibe\http\server.d(244): Error: template instance shouthost.Shouthost.comingSoon.compileDietFile!("soon/index.dt", req) error instantiating
source\shouthost.d(106): instantiated from here: render!("soon/index.dt", req)

Even though my server isnt windows and that I could just upload my code to the server to test, I wish to test everything locally but thiserror is getting in the way. Theres no errors or warning on linux.