From 41463dedffd85856c9c9787efbaa5ba20a9a1363 Mon Sep 17 00:00:00 2001 From: portree_kid Date: Sun, 29 Mar 2020 14:57:55 +0200 Subject: [PATCH] removed index copy --- src/renderer/store/index copy.js | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 src/renderer/store/index copy.js diff --git a/src/renderer/store/index copy.js b/src/renderer/store/index copy.js deleted file mode 100644 index aa190b7..0000000 --- a/src/renderer/store/index copy.js +++ /dev/null @@ -1,26 +0,0 @@ -import Vue from 'vue' -import Vuex from 'vuex' - -import L from 'leaflet' - -import { createPersistedState, createSharedMutations } from 'vuex-electron' - -import modules from './modules' - -Vue.use(Vuex) -//https://a.tile.openstreetmap.de -//'http://{s}.tile.osm.org/{z}/{x}/{y}.png' - -export default new Vuex.Store({ - modules, - plugins: [ - createPersistedState(), - createSharedMutations() - ], - strict: process.env.NODE_ENV !== 'production', - state: { zoom: 13, - center: L.latLng(47.413220, -1.219482), - url: 'http://{s}.tile.openstreetmap.de/{z}/{x}/{y}.png', - attribution: '© OpenStreetMap contributors', - marker: L.latLng(47.413220, -1.219482)} -})