22 lines
631 B
Text
22 lines
631 B
Text
# content-graph asset additions — merge this into site/config/assets.ncl.
|
|
#
|
|
# The `rustelo add content-graph` command writes this file to
|
|
# site/config/assets_content_graph.ncl and server/build.rs must merge it
|
|
# with the base assets.ncl before generating shell_asset_paths.rs.
|
|
#
|
|
# Alternatively, copy the relevant paths directly into assets.ncl.
|
|
|
|
{
|
|
assets = {
|
|
source_js = [
|
|
"/js/cytoscape.min.js",
|
|
"/js/cytoscape-cose-bilkent.js",
|
|
"/js/content-graph-shim.js",
|
|
],
|
|
bundled_js = [
|
|
"/js/cytoscape.min.js",
|
|
"/js/cytoscape-cose-bilkent.js",
|
|
"/js/content-graph-shim.js",
|
|
],
|
|
},
|
|
}
|