We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c520e63 commit 8696c25Copy full SHA for 8696c25
nuxt.config.js
@@ -1,6 +1,10 @@
1
import colors from 'vuetify/es5/util/colors'
2
3
export default {
4
+ env: {
5
+ // changing this will clear localstorage by a plugin
6
+ APP_VERSION: 'v0.0.7-alpha',
7
+ },
8
telemetry: false,
9
// Disable server-side rendering: https://go.nuxtjs.dev/ssr-mode
10
ssr: false,
@@ -25,7 +29,7 @@ export default {
25
29
css: ['@/assets/css/main.css'],
26
30
27
31
// Plugins to run before rendering page: https://go.nuxtjs.dev/config-plugins
28
- plugins: [],
32
+ plugins: [{ src: '@/plugins/clearLocalStorageOnUpdate.js', mode: 'client' }],
33
34
// Auto import components: https://go.nuxtjs.dev/config-components
35
components: true,
0 commit comments