Skip to content

Commit

Permalink
fix: offline icons not showing #508 (#537)
Browse files Browse the repository at this point in the history
  • Loading branch information
robertsLando authored May 29, 2020
1 parent 88b635b commit 84dc857
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 18 deletions.
1 change: 0 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<title>Zwave To MQTT</title>
<link href='https://fonts.googleapis.com/css?family=Roboto:300,400,500,700|Material+Icons' rel="stylesheet" type="text/css">
<!--Favicons-->
<meta name=mobile-web-app-capable content=yes>
<meta name=theme-color content=#fff>
Expand Down
25 changes: 11 additions & 14 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,6 @@
"@babel/plugin-syntax-jsx": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.10.1",
"@babel/preset-env": "^7.9.6",
"@mdi/font": "^5.3.45",
"auto-changelog": "^2.0.0",
"autoprefixer": "^9.8.0",
"babel-eslint": "^10.1.0",
Expand Down Expand Up @@ -158,6 +157,7 @@
"friendly-errors-webpack-plugin": "^1.7.0",
"html-webpack-plugin": "^4.3.0",
"lodash": "^4.17.15",
"material-design-icons-iconfont": "^5.0.1",
"mini-css-extract-plugin": "^0.9.0",
"mocha": "^7.2.0",
"node-notifier": "^7.0.1",
Expand Down
8 changes: 6 additions & 2 deletions src/plugins/vuetify.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,14 @@
import Vue from 'vue'
import Vuetify from 'vuetify'
import 'vuetify/dist/vuetify.min.css'
import '@mdi/font/css/materialdesignicons.css' // Ensure you are using css-loader
import 'material-design-icons-iconfont/dist/material-design-icons.css' // Ensure you are using css-loader

Vue.use(Vuetify)

const opts = {}
const opts = {
icons: {
iconfont: 'md'
}
}

export default new Vuetify(opts)

0 comments on commit 84dc857

Please sign in to comment.