You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Not sure if some change happened to Sanic or Python (Running most recent of each) itself that broke this but neither middleware nor compiled work anymore.
If I attempt to use it as middleware with the default paths it breaks with: re.error: bad escape \c at position 9
Somewhere along the line /static/css becomes \\static\\css so that may be where it breaks. However changing the path to something like /static/style seems to fix it but.. no output and no errors, a css file just never gets created.
While attempting to compile instead returns: re.error: unbalanced parenthesis at position 8 and creates an empty css file.
The text was updated successfully, but these errors were encountered:
I could always test again if needed; though I've since switched to using Stilus to just process my Stylus files as a "Before Launch" option in Pycharm rather than attempt using sass and middleware in Sanic, though PyPugJS is working great so far and it would be nice to just import two middlewares and keep things consistent. (That and Sass is what the framework I use is built on and the only way to customize it is through sass)
Not sure if some change happened to Sanic or Python (Running most recent of each) itself that broke this but neither middleware nor compiled work anymore.
If I attempt to use it as middleware with the default paths it breaks with:
re.error: bad escape \c at position 9
Somewhere along the line
/static/css
becomes\\static\\css
so that may be where it breaks. However changing the path to something like/static/style
seems to fix it but.. no output and no errors, a css file just never gets created.While attempting to compile instead returns:
re.error: unbalanced parenthesis at position 8
and creates an empty css file.The text was updated successfully, but these errors were encountered: