Forked from
websites / monnaie-libre-fr
1525 commits behind the upstream repository.
-
Emmanuel Salomon authoredEmmanuel Salomon authored
index.js 462 B
export const state = () => ({
rootPath: null,
footer: null,
})
export const mutations = {
SET_ROOTPATH(state, payload) {
state.rootPath = payload
},
SET_FOOTER(state, payload) {
state.footer = payload
},
}
export const actions = {
async nuxtServerInit({ commit }, { isDev, $content }) {
if (isDev) commit('SET_ROOTPATH', process.env.PWD)
const footer = await $content('ui/footer').fetch()
commit('SET_FOOTER', footer)
},
}