- repair font_awesome font
This commit is contained in:
parent
da1c1eae9e
commit
fa64fa904b
1
.babelrc
1
.babelrc
|
@ -6,6 +6,7 @@
|
|||
"plugins": [
|
||||
["@babel/plugin-proposal-decorators", { "legacy": true }],
|
||||
["@babel/plugin-proposal-class-properties", { "loose": true }],
|
||||
["@babel/plugin-proposal-private-property-in-object", { "loose": true }],
|
||||
["@babel/plugin-proposal-private-methods", { "loose": true }],
|
||||
["@babel/plugin-transform-runtime", { "regenerator": true }],
|
||||
"@babel/proposal-object-rest-spread"
|
||||
|
|
915
package-lock.json
generated
915
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
|
@ -3,8 +3,17 @@
|
|||
|
||||
// $fa-font-path: "/webfonts"; // destination folder in dist
|
||||
//Adapt the path to be relative to your main.scss file
|
||||
@import "../../node_modules/@fortawesome/fontawesome-free/scss/fontawesome.scss";
|
||||
@import "../../node_modules/@fortawesome/fontawesome-free/scss/solid.scss";
|
||||
// @import "../../node_modules/@fortawesome/fontawesome-free/scss/fontawesome.scss";
|
||||
// @import "../../node_modules/@fortawesome/fontawesome-free/scss/solid.scss";
|
||||
|
||||
// @import '~@fortawesome/fontawesome-free/scss/fontawesome';
|
||||
// $fa-font-path: "~@fortawesome/fontawesome-free/webfonts" !default;
|
||||
// $fa-font-path: "../../webfonts" !default;
|
||||
|
||||
$fa-font-path: "~@fortawesome/fontawesome-free/webfonts" !default;
|
||||
@import '~@fortawesome/fontawesome-free/scss/solid';
|
||||
@import '~@fortawesome/fontawesome-free/scss/fontawesome';
|
||||
|
||||
|
||||
// Import a Google Font
|
||||
@import url('https://fonts.googleapis.com/css?family=Nunito:400,700');
|
||||
|
|
|
@ -6,7 +6,7 @@ abstract class Control extends EventEmitter {
|
|||
|
||||
// @section
|
||||
// @aka Control options
|
||||
abstract options = {
|
||||
options = {
|
||||
position: 'topright',
|
||||
};
|
||||
protected _map;
|
||||
|
|
|
@ -35,14 +35,17 @@ module.exports = {
|
|||
// },
|
||||
module: {
|
||||
rules: [
|
||||
{
|
||||
test: /\.(svg|eot|ttf|woff|woff2)$/,
|
||||
loader: 'url-loader',
|
||||
options: {
|
||||
limit: 10000,
|
||||
name: 'webfonts/[name].[ext]'
|
||||
}
|
||||
},
|
||||
|
||||
|
||||
// {
|
||||
// test: /\.(svg|eot|ttf|woff|woff2)$/,
|
||||
// loader: 'url-loader',
|
||||
// options: {
|
||||
// limit: 10000,
|
||||
// name: 'webfonts/[name].[ext]'
|
||||
// }
|
||||
// },
|
||||
|
||||
// {
|
||||
// test: /\.(png|jpg|gif)$/,
|
||||
// loaders: [
|
||||
|
@ -101,7 +104,9 @@ module.exports = {
|
|||
sourceMap: true
|
||||
}
|
||||
},
|
||||
'resolve-url-loader',
|
||||
// {
|
||||
// loader: 'resolve-url-loader',
|
||||
// },
|
||||
// Compiles Sass to CSS
|
||||
{
|
||||
loader: "sass-loader",
|
||||
|
|
Loading…
Reference in New Issue
Block a user