Skip to content

Commit

Permalink
increase max file size
Browse files Browse the repository at this point in the history
  • Loading branch information
cristinamullin committed Nov 21, 2024
1 parent 987f9fd commit 68cd8fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/app_server.R
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

# Below increases the max data upload size from the Shiny default of 5MB per file
# to 30MB for file
options(shiny.maxRequestSize = 30 * 1024^2)
options(shiny.maxRequestSize = 400 * 1024^2)
options(warn = 2)
app_server <- function(input, output, session) {
# Your application server logic
Expand Down

0 comments on commit 68cd8fc

Please sign in to comment.