Skip to content

Commit 1f077aa

Browse files
authored
Add baseUrl to Render
1 parent a706473 commit 1f077aa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/pages/ProductsPage.vue

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ import ProductCard from '../components/ProductCard.vue'
1717
const products = ref([])
1818
1919
onMounted(async () => {
20-
// const baseUrl = 'https://vue-store-pinia.onrender.com';
21-
const baseUrl = 'http://localhost:8000';
20+
const baseUrl = 'https://vue-store-pinia.onrender.com';
21+
// const baseUrl = 'http://localhost:8000';
2222
const response = await fetch(`${baseUrl}/products`);
2323
const data = await response.json();
2424
products.value = data.map(product => ({

0 commit comments

Comments
 (0)