File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed
src/Development/IDE/Graph/Internal Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ bug-reports: https://github.com/haskell/haskell-language-server/issues
1010license : Apache-2.0
1111license-file : LICENSE
1212author : The Haskell IDE Team
13- maintainer : alan.zimm@gmail.com
13+ maintainer : The Haskell IDE Team
1414copyright : The Haskell IDE Team
1515category : Development
1616build-type : Simple
Original file line number Diff line number Diff line change @@ -20,8 +20,14 @@ import Data.FileEmbed
2020
2121htmlDataFiles :: [(FilePath , BS. ByteString )]
2222htmlDataFiles =
23- [ (" profile.html" , $ (embedFile " html/profile.html" ))
23+ [
24+ #ifdef __GHCIDE__
25+ (" profile.html" , $ (embedFile " hls-graph/html/profile.html" ))
26+ , (" shake.js" , $ (embedFile " hls-graph/html/shake.js" ))
27+ #else
28+ (" profile.html" , $ (embedFile " html/profile.html" ))
2429 , (" shake.js" , $ (embedFile " html/shake.js" ))
30+ #endif
2531 ]
2632
2733readDataFileHTML :: FilePath -> IO LBS. ByteString
You can’t perform that action at this time.
0 commit comments