Skip to content

Configuration

MikroSheets is local-first and has a small public runtime config surface for browser storage names.

The app reads config in this order:

  1. globalThis.MIKROSHEETS_CONFIG
  2. config.json
  3. mikrosheets.config.json
  4. built-in defaults

The default config is:

{
"storage": {
"indexedDb": {
"databaseName": "mikrosheets-local",
"stateKey": "default",
"storeName": "workbook_state"
}
}
}

This config is public browser config. Do not put secrets in it.