diff --git a/public/sitemap.xml b/public/sitemap.xml index 946b91aa..29a6f49d 100644 --- a/public/sitemap.xml +++ b/public/sitemap.xml @@ -1,16 +1,13 @@ - - - - + + + https://codereviewshop.web.app/ 2023-07-20T16:37:07+00:00 - - - - \ No newline at end of file + + diff --git a/src/App.vue b/src/App.vue index 7601f58a..67cc9023 100644 --- a/src/App.vue +++ b/src/App.vue @@ -2,11 +2,9 @@ import { RouterView } from "vue-router"; import Navbar from "./components/NavBar.vue"; import Footer from "./components/FooterSection.vue"; -import ConsentDialog from "./components/ConsentDialog.vue"; - diff --git a/src/components/ConsentDialog.vue b/src/components/ConsentDialog.vue deleted file mode 100644 index bcd75068..00000000 --- a/src/components/ConsentDialog.vue +++ /dev/null @@ -1,77 +0,0 @@ - - - - - - - - - - - - - - - Welcome to CodeReviewShop! - - - - This site uses Google Analytics to understand how users interact with it. - - - - - - Got it, thanks! - - - - - - - - - diff --git a/src/firebase/index.js b/src/firebase/index.js index 03d8a5b0..b5889039 100644 --- a/src/firebase/index.js +++ b/src/firebase/index.js @@ -1,6 +1,5 @@ // Import the functions you need from the SDKs you need import { initializeApp, getApp } from "firebase/app"; -import { getAnalytics } from "firebase/analytics"; import { getFirestore } from "firebase/firestore"; const firebaseConfig = { @@ -21,12 +20,6 @@ export const firebaseApp = { }, }; -export const analytics = { - install(app, options) { - getAnalytics(); - }, -}; - export const firestore = { install(app, options) { return getFirestore(); diff --git a/src/main.js b/src/main.js index c1f92032..388aa60e 100644 --- a/src/main.js +++ b/src/main.js @@ -5,13 +5,12 @@ import App from "./App.vue"; import router from "./router"; import { createApp } from "vue"; -import { firebaseApp, analytics, firestore } from "./firebase"; +import { firebaseApp, firestore } from "./firebase"; import { FontAwesomeIcon } from "@fortawesome/vue-fontawesome"; const app = createApp(App); app.use(firebaseApp); -app.use(analytics); app.use(firestore); app.use(router); app.use("/robots.txt");
- This site uses Google Analytics to understand how users interact with it. -