As @Mugen87 says there are two steps required to use Draco compression:
- Compress the data during or after export. The Blender exporter cannot do this for you, so you’d need to take the glTF file created by Blender and use it with https://gltf.insimo.com/. There are other tools for glTF->glTF+Draco conversion in progress.
- To load a glTF file using Draco, you need to give GLTFLoader a DRACODecoder so it can decompress it. Looks like you’ve done that part correctly above.