We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In the npm package if I do npm i docute there is a dist folder whic contains:
npm i docute
dist
The link href is /docute.css and the script src is /docute.js. But adding a front / will break the app if it is served from a subfolder, eg. https://example.org/site/index.html because https://example.org/docute.js won't exist, it will be https://example.org/site/docute.js.
/docute.css
/docute.js
/
So I suggest to just put src="docute.js" and same for the css.
src="docute.js"
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In the npm package if I do
npm i docute
there is adist
folder whic contains:The link href is
/docute.css
and the script src is/docute.js
. But adding a front/
will break the app if it is served from a subfolder, eg. https://example.org/site/index.html because https://example.org/docute.js won't exist, it will be https://example.org/site/docute.js.So I suggest to just put
src="docute.js"
and same for the css.The text was updated successfully, but these errors were encountered: