2

How can I increase the maximum file size that can be uploaded in Shiny beyond 30 MB?

Aditya Bhatt
  • 823
  • 1
  • 8
  • 7

1 Answers1

3

Set the variable in global options

 options(shiny.maxRequestSize = 30*1024^2)
Carl Boneri
  • 2,632
  • 1
  • 13
  • 15