博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
angular-cli配置css,js不起作用详解
阅读量:6305 次
发布时间:2019-06-22

本文共 1932 字,大约阅读时间需要 6 分钟。

如果在index.html添加就会有效果

  
Ng2

在.angualr.json配置就无效

{  "$schema": "./node_modules/@angular/cli/lib/config/schema.json",  "project": {    "name": "ng2"  },  "apps": [    {      "root": "src",      "outDir": "dist",      "assets": [        "assets",        "favicon.ico"      ],      "index": "index.html",      "main": "main.ts",      "polyfills": "polyfills.ts",      "test": "test.ts",      "tsconfig": "tsconfig.app.json",      "testTsconfig": "tsconfig.spec.json",      "prefix": "app",      "styles": [        "../node_modules/bootstrap/dist/css/bootstrap.min.css",        "../node_modules/font-awesome/css/font-awesome.min.css",        "styles.css"      ],      "scripts": [],      "environmentSource": "environments/environment.ts",      "environments": {        "dev": "environments/environment.ts",        "prod": "environments/environment.prod.ts"      }    }  ],  "e2e": {    "protractor": {      "config": "./protractor.conf.js"    }  },  "lint": [    {      "project": "src/tsconfig.app.json",      "exclude": "**/node_modules/**"    },    {      "project": "src/tsconfig.spec.json",      "exclude": "**/node_modules/**"    },    {      "project": "e2e/tsconfig.e2e.json",      "exclude": "**/node_modules/**"    }  ],  "test": {    "karma": {      "config": "./karma.conf.js"    }  },  "defaults": {    "styleExt": "css",    "component": {}  }}

1、.angular-cli.json是配置文件,修改需要重新启动服务。

2、使用cnpm创建目录,我遇到这样的情况无法加载css;

使用 ng new myApp,创建好目录,马上要开始初始化node_modules,默认会使用npm创建node_modules

cmd + c,停止创建。
cnpm install 使用cnpm创建node_modules
配置 .angular-cli.json文件,css不起作用,js也不起作用。
最后删除项目,配置npm国内淘宝镜像
1.临时使用

npm --registry https://registry.npm.taobao.org install express

2.持久使用

npm config set registry https://registry.npm.taobao.org

// 配置后可通过下面方式来验证是否成功

npm config get registry

然后使用 ng new myApp 直到结束,cd myApp; ng serve 运行项目,修改配置,没问题了。

好像就是angular-cli对cnpm支持不太好,还是使用npm的好。

3、当然你需要安装响应的包才行。

转载地址:http://ooixa.baihongyu.com/

你可能感兴趣的文章
为什么要跟别人比?
查看>>
app启动白屏
查看>>
Oracle 提高查询性能(基础)
查看>>
学习知识应该像织网一样去学习——“网状学习法”
查看>>
Hadoop集群完全分布式安装
查看>>
QString,char,string之间赋值
查看>>
我的友情链接
查看>>
Nginx+mysql+php-fpm负载均衡配置实例
查看>>
shell脚本操作mysql数据库 (部份参考)
查看>>
MySql之基于ssl安全连接的主从复制
查看>>
informix的逻辑日志和物理日志分析
查看>>
VMware.Workstation Linux与windows实现文件夹共享
查看>>
ARM inlinehook小结
查看>>
wordpress admin https + nginx反向代理配置
查看>>
管理/var/spool/clientmqueue/下的大文件
查看>>
HTML学习笔记1—HTML基础
查看>>
mysql dba系统学习(20)mysql存储引擎MyISAM
查看>>
centos 5.5 64 php imagick 模块错误处理记录
查看>>
apache中文url日志分析--php十六进制字符串转换
查看>>
Ansible--playbook介绍
查看>>