Enable / disable the automatic reload of shiny

82 Views Asked by At

I have a shiny express app like

import matplotlib.pyplot as plt, pandas as pd
from shiny import reactive, req, render

from shiny.express import input, render, ui

# variables
ui.page_opts(title="Range Rover", fillable=True)
...

It runs in VS Code which works fine. However, I'd like to prevent the automatic reload within some file setting but was unable to find the relevant documentation (if this is possible after all). So, the question: how to stop the automatic reload?

0

There are 0 best solutions below