update configuration to enable vuetify

This commit is contained in:
Laurent 2024-02-20 17:20:57 +00:00
parent 3760236279
commit bde4a575e2
4 changed files with 397 additions and 8309 deletions

3
.gitignore vendored
View File

@ -30,4 +30,5 @@ coverage
*.tsbuildinfo *.tsbuildinfo
# Local configuration file # Local configuration file
/src/config.js /src/config.js
/components.d.ts

8669
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -11,8 +11,9 @@
"format": "prettier --write src/" "format": "prettier --write src/"
}, },
"dependencies": { "dependencies": {
"@vue/cli": "^5.0.8", "@mdi/font": "^7.4.47",
"mqtt": "^5.3.5", "mqtt": "^5.3.5",
"roboto-fontface": "^0.10.0",
"vue": "^3.4.19", "vue": "^3.4.19",
"vue-router": "^4.2.5" "vue-router": "^4.2.5"
}, },
@ -23,6 +24,9 @@
"eslint": "^8.49.0", "eslint": "^8.49.0",
"eslint-plugin-vue": "^9.17.0", "eslint-plugin-vue": "^9.17.0",
"prettier": "^3.0.3", "prettier": "^3.0.3",
"vite": "^5.0.11" "unplugin-fonts": "^1.1.1",
"unplugin-vue-components": "^0.26.0",
"vite": "^5.0.11",
"vite-plugin-vuetify": "^2.0.1"
} }
} }

View File

@ -1,13 +1,31 @@
import { fileURLToPath, URL } from 'node:url' // Plugins
import Components from 'unplugin-vue-components/vite'
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue' import vue from '@vitejs/plugin-vue'
import Vuetify, { transformAssetUrls } from 'vite-plugin-vuetify'
import ViteFonts from 'unplugin-fonts/vite'
// Utilities
import { fileURLToPath, URL } from 'node:url'
import { defineConfig } from 'vite'
// https://vitejs.dev/config/ // https://vitejs.dev/config/
export default defineConfig({ export default defineConfig({
plugins: [ plugins: [
vue(), vue({
template: { transformAssetUrls }
}),
Vuetify(),
Components(),
ViteFonts({
google: {
families: [{
name: 'Roboto',
styles: 'wght@100;300;400;500;700;900',
}]
}
}),
], ],
define: { 'process.env': {} },
resolve: { resolve: {
alias: { alias: {
'@': fileURLToPath(new URL('./src', import.meta.url)) '@': fileURLToPath(new URL('./src', import.meta.url))