File tree 2 files changed +11
-8
lines changed
apps/components_guide_web/lib
2 files changed +11
-8
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,13 @@ defmodule ComponentsGuideWeb.Endpoint do
13
13
)
14
14
15
15
socket ( "/live" , Phoenix.LiveView.Socket , websocket: [ connect_info: [ session: @ session_options ] ] )
16
+
17
+ plug ( Plug.Static ,
18
+ at: "/collected/image" ,
19
+ from: { :components_guide_web , "priv/static/collected/image" } ,
20
+ gzip: false ,
21
+ only: ~w( svg png jpg gif)
22
+ )
16
23
17
24
# Serve at "/" the static files from "priv/static" directory.
18
25
#
@@ -22,14 +29,7 @@ defmodule ComponentsGuideWeb.Endpoint do
22
29
at: "/" ,
23
30
from: :components_guide_web ,
24
31
gzip: false ,
25
- only: ~w( css fonts images js favicon.ico robots.txt collected)
26
- )
27
-
28
- plug ( Plug.Static ,
29
- at: "/collected/image" ,
30
- from: { :components_guide_web , "priv/static/collected/image" } ,
31
- gzip: false ,
32
- only: ~w( svg png jpg gif)
32
+ only: ~w( css fonts images js favicon.ico robots.txt)
33
33
)
34
34
35
35
# Code reloading can be explicitly enabled under the
Original file line number Diff line number Diff line change @@ -29,11 +29,14 @@ defmodule Mix.Tasks.TemplateAssets do
29
29
media_type = MIME . from_path ( image_path )
30
30
hash = :crypto . hash ( :sha256 , data )
31
31
hash_base64 = hash |> Base . url_encode64 ( )
32
+
32
33
destination_dir = Path . join ( static_collected_dir ( ) , media_type )
33
34
File . mkdir_p! ( destination_dir )
35
+
34
36
extension = MIME . extensions ( media_type ) |> List . first ( )
35
37
destination_path = Path . join ( destination_dir , "#{ hash_base64 } .#{ extension } " )
36
38
File . copy! ( image_path , destination_path )
39
+
37
40
Mix . shell ( ) . info ( "Copied #{ image_path } to #{ destination_path } " )
38
41
end
39
42
end
You can’t perform that action at this time.
0 commit comments