Experiment to rebuild Diffuse using web applets.
0

Configure Feed

Select the types of activity you want to include in your feed.

1export const METHODS = ["browser", "custom", "device"] as const; 2 3export const CONNECTIONS = { 4 browser: "../../output/indexed-db/", 5 custom: undefined, 6 device: "../../output/native-fs/", 7}; 8 9export const DEFAULT_METHOD: (typeof METHODS)[number] = "browser"; 10export const LOCALSTORAGE_KEY = "applets/configurator/output/active-output"; 11export const CUSTOM_KEY = "applets/configurator/output/custom-applet";