Skip to content

Commit 9b8546f

Browse files
committed
add error
1 parent a2f24e2 commit 9b8546f

File tree

2 files changed

+11
-8
lines changed

2 files changed

+11
-8
lines changed

src/pages/CheckoutPage.vue

+5-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<p>{{ item.quantity }} x {{ item.name }}: ${{ (parseFloat(item.price.replace('$', '')) * item.quantity).toFixed(2) }}</p>
2525
</div>
2626
<p class="total">Total: ${{ totalCartValue }}</p>
27-
<button class="checkout-button">Checkout</button>
27+
<button class="checkout-button" @click="handleCheckout">Checkout</button>
2828
</div>
2929
</div>
3030
</div>
@@ -90,6 +90,10 @@ function decreaseQuantity(itemId) {
9090
cartStore.removeItem(itemId)
9191
}
9292
}
93+
94+
function handleCheckout() {
95+
throw new Error('Checkout functionality not implemented yet!')
96+
}
9397
</script>
9498

9599
<style scoped>

vite.config.js

+6-7
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,12 @@ export default ({ mode }) => {
1919
},
2020
plugins: [
2121
vue(),
22-
22+
// Add the Codecov plugin
23+
codecovVitePlugin({
24+
enableBundleAnalysis: true,
25+
bundleName: "vue-store-pinia", // Replace with your bundle project name
26+
uploadToken: process.env.VITE_CODECOV_TOKEN,
27+
}),
2328
// Put the Sentry vite plugin after all other plugins
2429
sentryVitePlugin({
2530
org: "steven-eubank",
@@ -33,12 +38,6 @@ export default ({ mode }) => {
3338
// excludeReplayWorker: true, // Only if you added replayIntegration
3439
},
3540
}),
36-
// Add the Codecov plugin
37-
codecovVitePlugin({
38-
enableBundleAnalysis: true,
39-
bundleName: "vue-store-pinia", // Replace with your bundle project name
40-
uploadToken: process.env.VITE_CODECOV_TOKEN,
41-
}),
4241
],
4342

4443
resolve: {

0 commit comments

Comments
 (0)