I use "./node_modules/@melonjs/webdoc-theme/stylesheets/index.css" to specify the path to my css files, and when generating the doc, webdoc will copy the folder back to the node_modules level into the target folder.
with node_modules being a common folder added in the .gitignore file, it then prevents GitHub to publish that folder (note: workaround is to specify \node_modules with the backslash).
I use
"./node_modules/@melonjs/webdoc-theme/stylesheets/index.css"
to specify the path to my css files, and when generating the doc, webdoc will copy the folder back to thenode_modules
level into the target folder.with node_modules being a common folder added in the
.gitignore
file, it then prevents GitHub to publish that folder (note: workaround is to specify\node_modules
with the backslash).