update migrations

This commit is contained in:
smilerz
2021-11-01 12:32:45 -05:00
parent dcfe4de61f
commit de7d2e27d9
2 changed files with 9 additions and 29 deletions

View File

@ -4,6 +4,13 @@ import App from "./ShoppingListView"
Vue.config.productionTip = false
// TODO move this and other default stuff to centralized JS file (verify nothing breaks)
let publicPath = localStorage.STATIC_URL + "vue/"
if (process.env.NODE_ENV === "development") {
publicPath = "http://localhost:8080/"
}
export default __webpack_public_path__ = publicPath // eslint-disable-line
new Vue({
i18n,
render: (h) => h(App),