目前我在index.html的angular 5应用程序中使用此链接:
<link href="https://unpkg.com/angular-calendar@0.23.6/css/angular-calendar.css" rel="stylesheet">
我尝试将此链接更改为:
<link href="./node_modules/angular-calendar/css/angular-calendar.css" rel="stylesheet">
但它不起作用。有谁知道我必须做什么才能让它发挥作用。甚至文件夹 node_modules 也用webpack打包?
答案 0 :(得分:1)
您无需在index.html文件中执行此操作
在angular-cli.json
文件
"styles": [
"./node_modules/angular-calendar/css/angular-calendar.css",
"styles.css"
],