Andrew See

Results 11 comments of Andrew See

Any update on the support for Safari?

I am glad to inform that the geo-location v2.0 is currently working for iOS Safari.

I have a similar issue, where the map is not shown when the network is a bit flaky (can't be 100% certain as I only encounter the problem occasionally on...

Problem persists in beta.15. Vuetify Playground: https://play.vuetifyjs.com/#eNqNU8Fu2zAM/RVWF3dAZSVtegnSAbvtA4btMO+gSHSkVJYMSc5SBPn30XbqOc0O88HAI5/eIynq54kdOsy2fiv3ia2ZbdoQM5xARZQZv485OEMdQwPFhVtUvvJ4HKgq+JThkoCX64P3p8oDZIMNrklUYy07l7+NuNAyvhZwrvz5U+XZA/vStiUJURmbpKJtMyTMXfu58lNZEet5MUMhYwVN2pE75e+Lr+hcgB8hOn1XkPRGjHIkRCBj0zoqkRDA5sBl2zsAfQQaaf0FDTjjMfPaotNAyaDRvVSMrCoGYs5TMmowaHcmE+F5cTBXjI9M5WRKvdIbf6zYRJsIg+8sPCRaGaVz8jgPA6SoSMjk3Ka1EEr7foT97PepVKERtpE7TGIr1esuhs7rJA5b6T3Gct9SH3O1K0fy1PYwlap57fAI/Y+r4LrGQ22d42PTsO9Sb8oV+owRpLM7/w6GIf42NuNVrxcTs5w8BqJZwZHXwdORQZpnYz00W776x2mAy6bdyAqz/NiOoH6uhyr+TnV+CRS+vYX36O2l3nEOtFIKTXCa+uX8v1ejF512rgfjNm7EbEvZ+YE9lY/laklv5KlclAu+xSzL5TP79QdcNiSv

@simeon9696 Thanks for sharing your result. I am aware that lighthouse apply throttling to simulate mobile scenario, and I am testing `create-nuxt-app` out of the box on local machines as...

@simeon9696 Just for a quick update, I have removed `@nuxtjs/vuetify` for testing purpose, and manage to score a 98-100 on lighthouse. ```js buildModules: [ // Doc: https://github.com/nuxt-community/eslint-module '@nuxtjs/eslint-module' // '@nuxtjs/vuetify'...

@simeon9696 Thanks, I'll have a look at Vuesax. Shall keep this open and do a lighthouse test when vuetify-module support vue3.

@HoehensteigerGames I have been through the same process as you did, and it seems the bottleneck is in vuetify v2. Also, you can't use https://www.davidroyer.me/blog/nuxtify-project/ as a reference as it...

@syskin For `@mdi/js` you need to manually import the icons you needed, and define it in `vuetify.options.js` ```js import { mdiMenu } from '@mdi/js'; // mdi-menu export default function() {...

@syskin In `nuxt.config.js` you specify this in `vuetify` section, i.e. ```js vuetify: { defaultAssets: false, // for production optionsPath: 'vuetify.options.js', }, ```