Estoy tratando de establecer las propiedades de estilo, pero me encuentro con el siguiente error JS Uncaught TypeError: gridElement.style.setProerty no es una función
const CELL_GAP = 2; const CELL_SIZE = 20; const GRID_SIZE = 4; export default class Grid { constructor(gridElement) { gridElement.style.setProerty("--grid-size", GRID_SIZE); gridElement.style.setProerty("--cell-gap", `${CELL_GAP}vmin`); gridElement.style.setProerty("--cell-size", `${CELL_SIZE}vmin`); } }Parece que tienes un error tipográfico. Cambie setProerty a setProperty y debería estar listo para comenzar.