Welcome to mirror list, hosted at ThFree Co, Russian Federation.

vue.js « commons « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cd24a503631352c66c0a3b68456605a0a9833d94 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import Vue from 'vue';
import GlFeatureFlagsPlugin from '~/vue_shared/gl_feature_flags_plugin';
import Translate from '~/vue_shared/translate';

if (process.env.NODE_ENV !== 'production') {
  Vue.config.productionTip = false;
}

Vue.use(GlFeatureFlagsPlugin);
Vue.use(Translate);

Vue.config.ignoredElements = ['gl-emoji'];