cart drawer and general structure

This commit is contained in:
elvira
2026-09-04 19:39:37 +03:00
parent c5f7b28aa0
commit 7577426f49
22 changed files with 1075 additions and 8 deletions
+8 -1
View File
@@ -10,7 +10,14 @@ export default defineConfig({
},
plugins: [
laravel({
input: ["resources/css/app.css", "resources/js/app.js"],
input: [
// checkout.css first: it's the portable cart/checkout module's
// structural base (@layer bbk-checkout) and must load before
// app.css so the host's own .bbk-* theming always wins.
"resources/css/checkout.css",
"resources/css/app.css",
"resources/js/app.js",
],
refresh: true,
}),
tailwindcss(),