Skip to content

Commit

Permalink
chore(deps): added css files to resource array according to aurelia/w…
Browse files Browse the repository at this point in the history
  • Loading branch information
Thanood committed May 22, 2016
1 parent 3df9839 commit 49cef9d
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,18 @@
"href": "doc/CHANGELOG.md"
}
]
}
},
"resources": [
"src/breadcrumbs/breadcrumbs.css",
"src/collection/md-collection-selector.css",
"src/slider/slider.css",
"src/card/card.css",
"src/input/input.css",
"src/switch/switch.css",
"src/collection/collection-header.css",
"src/navbar/navbar.css",
"src/collection/collection-item.css",
"src/sidenav/sidenav.css"
]
}
}

1 comment on commit 49cef9d

@niieani
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@Thanood These need to be the same as the ones that would actually be required by the app, so not src/... but dist/.... You also need to reference actual JS files. If you leave out an extension and a View of the same file name exist (just with .html) it will reference it automatically. See aurelia/skeleton-navigation#440 (comment).

Please sign in to comment.