const productSchema = new Schema({
name: { type: String, required: true },
price: { type: String, required: true },
size: { type: String, required: true },
image: {
type: String, required: true, get(image) {
// http://localhost:5000/upload/imagename.png
return `${APP_URL}/${image}`
}
},
}, { timestamps: true, toJSON: { getters: true }, id: false })