Google fonts removed

This commit is contained in:
Gregor Schulte
2023-04-03 18:45:11 +02:00
parent 3a162090c2
commit e648aa55f6
8 changed files with 12 additions and 12 deletions

View File

@@ -13,6 +13,8 @@
"test:unit": "vue-cli-service test:unit" "test:unit": "vue-cli-service test:unit"
}, },
"dependencies": { "dependencies": {
"@fontsource/roboto": "^4.5.8",
"@mdi/font": "^7.2.96",
"core-js": "^3.29.1", "core-js": "^3.29.1",
"vue": "^2.7.14", "vue": "^2.7.14",
"vue-i18n": "^8.28.2", "vue-i18n": "^8.28.2",

View File

@@ -1,5 +1,5 @@
module.exports = { module.exports = {
plugins: { plugins: {
autoprefixer: {}, autoprefixer: {}
}, }
} }

View File

@@ -23,8 +23,6 @@
<meta name="viewport" content="width=device-width,initial-scale=1.0"> <meta name="viewport" content="width=device-width,initial-scale=1.0">
<link rel="icon" href="<%= BASE_URL %>favicon.png"> <link rel="icon" href="<%= BASE_URL %>favicon.png">
<title>Vuetify Material Dashboard - by Creative Tim</title> <title>Vuetify Material Dashboard - by Creative Tim</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@mdi/font@latest/css/materialdesignicons.min.css">
</head> </head>
<body> <body>
<noscript> <noscript>

View File

@@ -2,6 +2,10 @@
<router-view/> <router-view/>
</template> </template>
<style lang="sass">
@import '../node_modules/@fontsource/roboto/index.css'
</style>
<script> <script>
export default { export default {
name: 'App' name: 'App'

View File

@@ -2,6 +2,7 @@ import Vue from 'vue'
import Vuetify from 'vuetify/lib' import Vuetify from 'vuetify/lib'
import i18n from '@/i18n' import i18n from '@/i18n'
import '@/sass/overrides.sass' import '@/sass/overrides.sass'
import '@mdi/font/css/materialdesignicons.css'
Vue.use(Vuetify) Vue.use(Vuetify)

View File

@@ -49,12 +49,6 @@ export default new Router({
name: 'Google Maps', name: 'Google Maps',
path: 'maps/google-maps', path: 'maps/google-maps',
component: () => import('@/views/dashboard/maps/GoogleMaps') component: () => import('@/views/dashboard/maps/GoogleMaps')
},
// Upgrade
{
name: 'Upgrade',
path: 'upgrade',
component: () => import('@/views/dashboard/Upgrade')
} }
] ]
} }

View File

@@ -6,7 +6,7 @@ Vue.use(Vuex)
export default new Vuex.Store({ export default new Vuex.Store({
state: { state: {
barColor: 'rgba(0, 0, 0, .8), rgba(0, 0, 0, .8)', barColor: 'rgba(0, 0, 0, .8), rgba(0, 0, 0, .8)',
barImage: 'https://demos.creative-tim.com/material-dashboard/assets/img/sidebar-1.jpg', barImage: '',
drawer: null drawer: null
}, },
mutations: { mutations: {

1
target/npmlist.json Normal file
View File

@@ -0,0 +1 @@
{"version":"2.2.0","name":"vuetify-material-dashboard","dependencies":{"core-js":{"version":"3.29.1"},"vue-i18n":{"version":"8.28.2"},"vue-router":{"version":"3.6.5"},"vue":{"version":"2.7.14"},"vuetify":{"version":"2.6.14"},"vuex":{"version":"3.6.2"}}}