Convert .svg into .png with white background.

inkscape -z -b \"#fff\" -e img.png -h 1080 img.svg

Or a complete folder:

for i in *.svg
    do inkscape -z -b \"#fff\" -e $(basename -s .svg $i).png -h 1080 $i
done