mirror of https://github.com/zulip/zulip.git
17 lines
435 B
JavaScript
17 lines
435 B
JavaScript
/* eslint-env commonjs */
|
|
|
|
"use strict";
|
|
|
|
module.exports = {
|
|
files: [
|
|
"./*.svg", // For web-only icons.
|
|
"../../shared/icons/*.svg", // For icons to be shared with the mobile app.
|
|
],
|
|
fontName: "zulip-icons",
|
|
classPrefix: "zulip-icon-",
|
|
baseSelector: ".zulip-icon",
|
|
cssTemplate: "./template.hbs",
|
|
ligature: false,
|
|
types: ["woff2"], // https://github.com/jeerbl/webfonts-loader/pull/219
|
|
};
|