如何从webpack angular2 app中的node_modules导入CSS

时间:2016-10-16 15:12:37

标签: css angular typescript npm webpack

假设我们从以下初学者包开始: https://github.com/angularclass/angular2-webpack-starter

npm installnpm run start之后一切正常。

我想添加一个外部css模块,例如bootstrap 4的css(并且只有css)。 (我知道bootstrap有一个bootstrap-loader,但现在我要求一般的解决方案,所以请在这里考虑bootstrap 4,因为它可能是通过npm提供的任何其他css模块。)

我通过npm:npm install bootstrap@4.0.0-alpha.4 --save

安装bootstrap

首先我认为将import 'bootstrap/dist/css/bootstrap.css';添加到vendor.browser.ts文件就足够了。

但事实并非如此。

我该怎么做才能找到合适的解决方案?

解决方案我不是要求:

  1. “将外部css模块复制到assets文件夹,然后从那里使用它”
    • 我正在寻找与npm包一起使用的解决方案。
  2. “使用bootstrap-loader for webpack”
    • 如上所述,我正在寻找一般解决方案,bootstrap只是一个例子。
  3. “使用其他堆栈”
    • 我正在寻找上面提到的确切初学者包的解决方案。

3 个答案:

答案 0 :(得分:80)

可以在styles.css文件中使用@import '~bootstrap/dist/css/bootstrap.css';。 (注意

编辑:工作原理 - '〜'是指向资源文件夹的webpack配置中设置的别名......简单就是..

编辑2:如何使用'〜'配置webpack的示例别名... 这应该放在webpack配置文件中(通常是webpack.config.js)...



// look for the "resolve" property and add the following...
// you might need to require the asset like '~/bootsrap/...'
resolve: {
  alias: {
    '~': path.resolve('./node_modules')
  }
}




答案 1 :(得分:62)

您无法使用该堆栈将任何CSS导入供应商文件,而无需进行一些更改。

为什么呢?好吧因为这一行:

import 'bootstrap/dist/css/bootstrap.css';

它只将您的css导入为字符串,而实际上您想要的是样式标记中的供应商css。如果您选中config/webpack.commons.js,您会发现此规则:

 {
   test: /\.css$/,
   loaders: ['to-string-loader', 'css-loader']
 },

此规则允许您的组件导入css文件,基本上是这样的:

@Component({
  selector: 'app',
  encapsulation: ViewEncapsulation.None,
  styleUrls: [
    './app.component.css' // this why you import css as string
  ],

在AppComponent中没有封装,因为此行encapsulation: ViewEncapsulation.None,表示任何css规则将全局应用于您的应用。因此,您可以在应用程序组件中导入引导程序样式:

@Component({
  selector: 'app',
  encapsulation: ViewEncapsulation.None,
  styleUrls: [
    './app.component.css',
    '../../node_modules/bootstrap/dist/css/bootstrap.css'
  ],

但是如果你坚持导入到你的vendor.ts那么你将需要安装一个新的加载器,npm i style-loader --save-dev这将允许webpack将css注入你的页面。然后,您需要在webpack.common.js上创建特定规则并更改现有规则:

 { //this rule will only be used for any vendors
   test: /\.css$/,
   loaders: ['style-loader', 'css-loader'],
   include: [/node_modules/]
 },
 {
   test: /\.css$/,
   loaders: ['to-string-loader', 'css-loader'],
   exclude: [/node_modules/] //add this line so we ignore css coming from node_modules
 },

第一条规则仅在您尝试从node_modules内的任何包导入css时应用,第二条规则将应用于您从node_modules

之外导入的任何CSS

答案 2 :(得分:5)

所以这是一种使用我认为最方便的CSS导入各种angular-cli文件的方法。

基本上,您可以在配置中参考CSS文件(如果您将覆盖它们,则命令很重要),angular-cli将负责其余部分。例如,您可能希望从节点模块中包含几种样式,可以按如下方式进行:

"styles": [
    "../node_modules/font-awesome/css/font-awesome.min.css",
    "../node_modules/primeng/resources/primeng.min.css",
    "styles.css"
  ]

示例full-config可能如下所示:

<强> .angular-cli.json

{
  "$schema": "./node_modules/@angular/cli/lib/config/schema.json",
  "project": {
    "name": "my-angular-app"
  },
  "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/font-awesome/css/font-awesome.min.css",
        "../node_modules/primeng/resources/primeng.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": "scss",
    "component": {}
  }
}