Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.60 KB | None | 0 0
  1. <require from="bootstrap/css/bootstrap.css"></require>
  2.  
  3. "overrides": {
  4. "npm:jquery@^3.0.0": {
  5. "format": "amd"
  6. }
  7. }
  8.  
  9. "dependencies": [
  10. "jquery",
  11. {
  12. "name": "bootstrap",
  13. "path": "../node_modules/bootstrap/dist",
  14. "main": "js/bootstrap.min",
  15. "deps": ["jquery"],
  16. "exports": "$",
  17. "resources": [
  18. "css/bootstrap.css"
  19. ]
  20. }
  21. ]
  22.  
  23. "bundles": [
  24. {
  25. "name": "app-bundle.js",
  26. "source": [
  27. "[**/*.js]",
  28. "**/*.{css,html}"
  29. ],
  30. "dependencies": [
  31. "jquery",
  32. {
  33. "name": "bootstrap",
  34. "path": "../node_modules/bootstrap/dist",
  35. "main": "js/bootstrap.min",
  36. "deps": ["jquery"],
  37. "exports": "$",
  38. "resources": [
  39. "css/bootstrap.css"
  40. ]
  41. }
  42. ]
  43. },
  44.  
  45. "jquery",
  46. {
  47. "name": "bootstrap",
  48. "path": "../node_modules/bootstrap/dist",
  49. "main": "js/bootstrap.min",
  50. "deps": [
  51. "jquery"
  52. ],
  53. "resources": [
  54. "css/bootstrap.css"
  55. ],
  56. "exports": "$"
  57. }
  58.  
  59. "copyFiles": {
  60. "node_modules/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2": "bootstrap/fonts",
  61. "node_modules/bootstrap/dist/fonts/glyphicons-halflings-regular.woff": "bootstrap/fonts",
  62. "node_modules/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf": "bootstrap/fonts"
  63. }
  64.  
  65. <require from="bootstrap/css/bootstrap.css"></require>
  66.  
  67. aurelia.use
  68. .standardConfiguration()
  69. .feature('resources')
  70. .globalResources('bootstrap/css/bootstrap.css');
  71.  
  72. <require from="bootstrap/css/bootstrap.css"></require>
  73.  
  74. <require from="bootstrap/dist/css/bootstrap.css"></require>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement