google-fonts-webpack-plugin

  • 所有者: gabiseabra/google-fonts-webpack-plugin
  • 平台:
  • 许可证:
  • 分类:
  • 主题:
  • 喜欢:
    0
      比较:

Github星跟踪图

Google Fonts Webpack Plugin

Download Google fonts to webpack build folder using google-webfonts-helper or use CDN to integrate with html-webpack-plugin.


Install

npm install google-fonts-webpack-plugin

Usage

/webpack.config.js

const GoogleFontsPlugin = require("google-fonts-webpack-plugin")

module.exports = {
	"entry": "index.js",
	/* ... */
	plugins: [
		new GoogleFontsPlugin({
			fonts: [
				{ family: "Source Sans Pro" },
				{ family: "Roboto", variants: [ "400", "700italic" ] }
			]
			/* ...options */
		})
	]
}

Options

new GoogleFontsPlugin(options: Object)
```, Name, Type, Default, Description, ----, ----, -------, -----------, fonts, `FontObject[]`, -, Configuration generated by [http://fontello.com](Fontello.com)., name, `String`, `"fonts"`, Module name., filename, `String`, `"fonts.css"`, Css file name., path, `String`, `"font/"`, Relative path to fonts directory. If path is `undefined` fonts are not downloaded, the css file is generated with Google hosted font files., local, `Boolean`, `true`, Wether to use google-webfonts-helper API or just link to Google Fonts hosted css. If this option is set to false this plugin just adds the css url to html-webpack-plugin (if present)., formats, `Array`, `[ "eot", "woff", "woff2", "ttf", "svg" ]`, Font formats to download., apiUrl, `String`, `"https://google-webfonts-helper.herokuapp.com/api/fonts"`, google-webfonts-helper API url.


### FontObject, Name, Type, Default, Description, ----, ----, -------, -----------, family, `String`, -, Font family., variants, `Array`, -, Font variants according	to google-webfonts-helper (e.g.: `[ "italic", "500", "700italic" ]`)., subsets, `Array`, -, Font subsets according	to google-webfonts-helper (e.g.: `[ "latin", "greek" ]`)., formats, `Array`, -, Font formats to download. Defaults to `options.formats`.

主要指标

概览
名称与所有者gabiseabra/google-fonts-webpack-plugin
主编程语言JavaScript
编程语言JavaScript (语言数: 1)
平台
许可证
所有者活动
创建于2017-03-24 21:47:52
推送于2021-08-05 10:07:14
最后一次提交2017-12-22 16:19:11
发布数9
最新版本名称v0.4.4 (发布于 2017-12-22 18:11:57)
第一版名称v0.2.0 (发布于 2017-03-25 19:40:08)
用户参与
星数132
关注者数9
派生数44
提交数30
已启用问题?
问题数29
打开的问题数19
拉请求数3
打开的拉请求数3
关闭的拉请求数2
项目设置
已启用Wiki?
已存档?
是复刻?
已锁定?
是镜像?
是私有?