neuland / pug4j

a pug implementation written in Java (formerly known as jade)
MIT License
61 stars 12 forks source link

Can't find style.css - file url missing forwardslash? #15

Open astubbs opened 2 years ago

astubbs commented 2 years ago

Using the code in my .pug: include style.css

I get the error:

the included file [style.css] could not be opened Users/antony/IdeaProjects/X/target/classes/style.css (No such file or directory)

You can see it's missing a leading forward slash, otherwise it would have worked.

If I use: include /Users/antony/IdeaProjects/X/target/classes/style.css

it works.