Initial commit: backend, storefront, vendor-panel added

This commit is contained in:
2025-08-01 11:05:32 +08:00
commit 08174125d2
2958 changed files with 310810 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
const path = require("path")
// get the path of the dependency "@medusajs/ui"
const medusaUI = path.join(
path.dirname(require.resolve("@medusajs/ui")),
"**/*.{js,jsx,ts,tsx}"
)
/** @type {import('tailwindcss').Config} */
module.exports = {
presets: [require("@medusajs/ui-preset")],
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}", medusaUI],
darkMode: "class",
theme: {
extend: {},
},
plugins: [],
}