2017-03-15 22:56:48 -04:00
|
|
|
import Vue from 'vue';
|
2019-09-24 14:06:05 -04:00
|
|
|
import GlFeatureFlagsPlugin from '~/vue_shared/gl_feature_flags_plugin';
|
2021-07-21 17:10:10 -04:00
|
|
|
import Translate from '~/vue_shared/translate';
|
2017-03-15 22:56:48 -04:00
|
|
|
|
|
|
|
if (process.env.NODE_ENV !== 'production') {
|
|
|
|
Vue.config.productionTip = false;
|
|
|
|
}
|
2019-09-24 14:06:05 -04:00
|
|
|
|
|
|
|
Vue.use(GlFeatureFlagsPlugin);
|
2021-07-21 17:10:10 -04:00
|
|
|
Vue.use(Translate);
|
2021-03-11 07:09:28 -05:00
|
|
|
|
|
|
|
Vue.config.ignoredElements = ['gl-emoji'];
|