Skip to content
This repository was archived by the owner on May 15, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 9 additions & 12 deletions public/sitemap.xml
Original file line number Diff line number Diff line change
@@ -1,16 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<urlset
xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9
http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd">
<!-- created with Free Online Sitemap Generator www.xml-sitemaps.com -->

<?xml version="1.0" encoding="UTF-8"?>
<urlset
xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9
http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd">
<!-- created with Free Online Sitemap Generator www.xml-sitemaps.com -->

<url>
<loc>https://codereviewshop.web.app/</loc>
<lastmod>2023-07-20T16:37:07+00:00</lastmod>
</url>


</urlset>
</url>
</urlset>
2 changes: 0 additions & 2 deletions src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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";
</script>

<template>
<ConsentDialog />
<header>
<Navbar />
</header>
Expand Down
77 changes: 0 additions & 77 deletions src/components/ConsentDialog.vue

This file was deleted.

7 changes: 0 additions & 7 deletions src/firebase/index.js
Original file line number Diff line number Diff line change
@@ -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 = {
Expand All @@ -21,12 +20,6 @@ export const firebaseApp = {
},
};

export const analytics = {
install(app, options) {
getAnalytics();
},
};

export const firestore = {
install(app, options) {
return getFirestore();
Expand Down
3 changes: 1 addition & 2 deletions src/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -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");
Expand Down