Viewing the examples via the file:// protocol appears to cause bad URI or cross-site access not allowed source errors for the font files for at least some browsers.
Also, trying to bypass this by serving them locally (via Python's built-in HTTP server), requires the server being run in the repository root directory rather than the examples directory because of relative references that use the dist directory.
Finally, the URL for the font ends up being of the form /examples/OCRA.woff rather than the actual location of /dist/OCRA.woff.
Viewing the examples via the
file://
protocol appears to causebad URI or cross-site access not allowed source
errors for the font files for at least some browsers.Also, trying to bypass this by serving them locally (via Python's built-in HTTP server), requires the server being run in the repository root directory rather than the
examples
directory because of relative references that use thedist
directory.Finally, the URL for the font ends up being of the form
/examples/OCRA.woff
rather than the actual location of/dist/OCRA.woff
.