---
title: Optimize SVG Precision
impact: LOW
impactDescription: reduces file size
tags: rendering, svg, optimization, svgo
---
## Optimize SVG Precision
Reduce SVG coordinate precision to decrease file size. The optimal precision depends on the viewBox size, but in general reducing precision should be considered.
**Incorrect (excessive precision):**
```svg
```
**Correct (1 decimal place):**
```svg
```
**Automate with SVGO:**
```bash
npx svgo --precision=1 --multipass icon.svg
```