Welcome to mirror list, hosted at ThFree Co, Russian Federation.

.fantasticonrc.js - github.com/twbs/icons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3445d657ae40b279f9b1bab0d691ce7ac711c742 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
module.exports = {
  inputDir: './icons', // (required)
  outputDir: './font', // (required)
  fontTypes: ['woff', 'woff2'],
  assetTypes: ['css', 'json', 'html'],
  name: 'bootstrap-icons',
  prefix: 'bi',
  selector: '.bi',
  fontsUrl: './fonts',
  formatOptions: {
    json: {
      // render the JSON human readable with two spaces indent (default is none, so minified)
      indent: 2
    }
  },
  // Use a custom Handlebars template
  templates: {
    css: './src/css.hbs',
    html: './src/html.hbs'
  },
  pathOptions: {
    json: './font/bootstrap-icons.json',
    css: './font/bootstrap-icons.css',
    html: './font/index.html',
    ttf: './font/fonts/bootstrap-icons.ttf',
    woff: './font/fonts/bootstrap-icons.woff',
    woff2: './font/fonts/bootstrap-icons.woff2',
    eot: './font/fonts/bootstrap-icons.eot'
  }
};