mirror of
https://github.com/jellyfin/jellyfin-vue.git
synced 2025-02-21 22:40:37 +00:00
refactor(axe): prevent axe from running automatically
axe running by itself caused some error messages to get lost. For ease of development, run it manually with $nuxt.$axe.run() in your browser's console.
This commit is contained in:
parent
4757c117ff
commit
4fca2881a8
@ -3,6 +3,6 @@ import Vue from 'vue';
|
||||
if (process.env.NODE_ENV === 'development') {
|
||||
// eslint-disable-next-line
|
||||
import('vue-axe').then(({ default: VueAxe }) => {
|
||||
Vue.use(VueAxe);
|
||||
Vue.use(VueAxe, { auto: false, clearConsoleOnUpdate: false });
|
||||
});
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user