truronews-document-history
v1.0.7
Published
Firebase Document History
Downloads
3
Readme
Doc History
Track Firestore Document Versions with Ease
Quick Setup
- Add
doc-history
dependency to your project
# Using yarn
yarn add https://github.com/classicneupane/doc-history
- Add
@tn/doc-history
to themodules
section ofnuxt.config.ts
export default defineNuxtConfig({
modules: [
'@tn/doc-history'
]
})
That's it! You can now use My Module in your Nuxt app ✨
Config
export default defineNuxtConfig({
documentHistory: {
app: 'APP_NAME',
collection: 'firebase collection to keep track of document changes, default: document_history'
}
})