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
I have identified a problem with the concept of "serving from the fileset".
In my app, I am shuffling things around for various reasons so something like the following is pretty common:
(comp
(sift :include #{#"semantic-ui-less/_site"} :invert true) ;; sample, not needed
(sift :move {#"semantic-ui-less/definitions/" "css/definitions/"
#"semantic-ui-less/themes/" "css/themes/" ;; need this here for less
#"semantic-ui-less/semantic.less" "css/semantic.less"
#"semantic-ui-less/theme.less" "css/theme.less"})
(css/lessc :less-path "css/blog.less")
(sift :move {#"css/" "public/css/"}))
This basically brings every css resource I am interested in under "public" so that then I can do:
(serve :resource-root "public")
I found after some debugging that files shuffled with with :move are not served at all.
I was wondering if there is something I need to add (custom handler?) and if this is a known problem.
Thanks a lot!
The text was updated successfully, but these errors were encountered:
arichiardi
changed the title
Cannot serve move files
Cannot serve sift moved files
Nov 21, 2017
Hello @pandeiro!
I have identified a problem with the concept of "serving from the fileset".
In my app, I am shuffling things around for various reasons so something like the following is pretty common:
This basically brings every css resource I am interested in under "public" so that then I can do:
I found after some debugging that files shuffled with with
:move
are not served at all.I was wondering if there is something I need to add (custom handler?) and if this is a known problem.
Thanks a lot!
The text was updated successfully, but these errors were encountered: