Adam Bouqdib
Adam Bouqdib
Try ```go mainRouter.Handler(http.MethodGet, "/sub", http.StripPrefix("/sub", subRouter)) ``` I wouldn't recommend it though as you'll lose the performance benefits of the radix tree.
Shameless bump
To be honest I've been using my own fork that this PR is coming from: https://github.com/abeMedia/enumer Would love to get this merged though!
So how do I use the `asset` tag to include `_assets/stylesheets/app.css.less`?
Definitely not as that would require executing JavaScript on the page. You might wanna check out https://github.com/chromedp/chromedp
I am trying to achieve the same but without any luck...
Simply changing them from `const` to `var` would be great!
Stubs worked, however there's loads more issues. Since all these issues are in the standard library, do you know a version of it that works with c-for-go?
Since I was using some custom bash before migrating to this I had already done that part but I do think for people first arriving here it would be useful...
This can be fixed by setting the token on checkout e.g. ```yaml jobs: docs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 with: token: ${{ secrets.PERSONAL_ACCESS_TOKEN }} ref: ${{ github.ref }} -...