Skip to content
Snippets Groups Projects
Commit efb159fb authored by HJ's avatar HJ :fire:
Browse files

experiment

parent cef03064
No related tags found
Loading
Pipeline #8542 passed
......@@ -27,6 +27,19 @@ import afterStoreSetup from './boot/after_store.js'
const currentLocale = (window.navigator.language || 'en').split('-')[0]
// These are inlined by webpack's DefinePlugin
/* eslint-disable */
const ciHostname = 'CI_HOSTNAME'
/* eslint-enable */
if (ciHostname || 1 > 0) {
window._fetch = window.fetch
window.fetch = function () {
arguments[0] = 'https://shigusegubu.club' + arguments[0]
return window._fetch.apply(this, arguments)
}
}
Vue.use(Vuex)
Vue.use(VueRouter)
Vue.use(VueTimeago, {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment