Merge branch 'master' of papi.tkpups.com:tmiller/pokemon

This commit is contained in:
zach
2026-02-17 11:43:19 -05:00
2 changed files with 22 additions and 1 deletions

View File

@@ -10,7 +10,13 @@ export const relations = defineRelations(schema, (r) => ({
},
cards: {
prices: r.many.skus(),
set: r.one.sets({
from: r.cards.setId,
to: r.sets.setId,
}),
},
sets: {
cards: r.many.cards(),
},
}));

View File

@@ -13,5 +13,20 @@ import '/src/assets/css/main.scss';
</head>
<body>
<slot />
<script>
// Import only what you need
// import 'bootstrap/js/dist/alert';
// import 'bootstrap/js/dist/button';
// import 'bootstrap/js/dist/carousel';
// import 'bootstrap/js/dist/collapse';
// import 'bootstrap/js/dist/dropdown';
import 'bootstrap/js/dist/modal';
// import 'bootstrap/js/dist/offcanvas';
// import 'bootstrap/js/dist/popover';
// import 'bootstrap/js/dist/scrollspy';
// import 'bootstrap/js/dist/tab';
// import 'bootstrap/js/dist/toast';
// import 'bootstrap/js/dist/tooltip';
</script>
</body>
</html>