Tim Willis

Results 13 comments of Tim Willis

Or, if you don't have jQuery on your site/don't want to add it, just do it using `fetch`! It is 2020 after all 😄 ``` fetch('https://ig.instant-tokens.com/users/XXXXXX/instagram/XXXXXX/token?userSecret=XXXXX') .then(resp => resp.json()) .then(data...

👀 https://github.com/faceyspacey/extract-css-chunks-webpack-plugin/pull/307

@ScriptedAlchemy can we get this merged in and released? Lighthouse penalizes this fairly heavily:

@farzadso Can you provide some more insight on how I might go about setting those environment variables? Do the `experiments` receive the context as an argument? Or are you simply...

You might also consider parsing through all your vue components to find which Vuetify Atomic CSS helpers are used and removed all those that aren't. I wrote a script you'd...

@MentalGear if you just want Vuetify component and style updates, you can install a newer version of Vuetify. Instead of using the version that `vuetify-module` uses, it will use the...

@MentalGear I honestly took for granted all the wonderful things this module does for me under the hood. Trying to duplicate those things via a plugin is what made me...

Your `vuetify.options.js` file can return a function, then you can conditionally change themes. If you needed to consume something from a HTTP request, consider mapping the response to the state...

@SeriousLeeTV it's been quite a while since I worked in a project that used this package. From what I recall, this worked as expected when I set it up. Can...

Here's an example of what my `nuxt.config.js` looks like: ``` vuetify: { customVariables: ['@/assets/styles/vuetify/index.scss'], treeShake: !process.env.NO_TREE_SHAKE, optionsPath: './vuetify.options.js' }, ``` and my vuetify options: ``` import fouroneoneTheme from '~/vuetify/themes/411.js' import...