Add or Update data

remove all doc data and add new, if doc is not exist create it

// if id is for non-exist doc, client will generate new id
const cityRef = doc(db, 'cities', 'BJ')

setDoc(cityRef, { 
	capital: true,
	long: false,
	title: true
},
// see differences and apply delta, if doc is not exist create it
{ merge: true }
);