|
@@ -2,7 +2,7 @@
|
|
import Components from 'unplugin-vue-components/vite'
|
|
import Components from 'unplugin-vue-components/vite'
|
|
import Vue from '@vitejs/plugin-vue'
|
|
import Vue from '@vitejs/plugin-vue'
|
|
import Vuetify, { transformAssetUrls } from 'vite-plugin-vuetify'
|
|
import Vuetify, { transformAssetUrls } from 'vite-plugin-vuetify'
|
|
-import ViteFonts from 'unplugin-fonts/vite'
|
|
|
|
|
|
+// import ViteFonts from 'unplugin-fonts/vite'
|
|
|
|
|
|
// Utilities
|
|
// Utilities
|
|
import { defineConfig } from 'vite'
|
|
import { defineConfig } from 'vite'
|
|
@@ -16,15 +16,17 @@ export default defineConfig({
|
|
}),
|
|
}),
|
|
// https://github.com/vuetifyjs/vuetify-loader/tree/master/packages/vite-plugin#readme
|
|
// https://github.com/vuetifyjs/vuetify-loader/tree/master/packages/vite-plugin#readme
|
|
Vuetify(),
|
|
Vuetify(),
|
|
- Components(),
|
|
|
|
- ViteFonts({
|
|
|
|
- google: {
|
|
|
|
- // families: [{
|
|
|
|
- // name: 'Roboto',
|
|
|
|
- // styles: 'wght@100;300;400;500;700;900',
|
|
|
|
- // }],
|
|
|
|
- },
|
|
|
|
|
|
+ Components({
|
|
|
|
+ dts: false
|
|
}),
|
|
}),
|
|
|
|
+ // ViteFonts({
|
|
|
|
+ // google: {
|
|
|
|
+ // // families: [{
|
|
|
|
+ // // name: 'Roboto',
|
|
|
|
+ // // styles: 'wght@100;300;400;500;700;900',
|
|
|
|
+ // // }],
|
|
|
|
+ // },
|
|
|
|
+ // }),
|
|
],
|
|
],
|
|
define: { 'process.env': {} },
|
|
define: { 'process.env': {} },
|
|
resolve: {
|
|
resolve: {
|