0.1.0 • Published 5 years ago

@paulbarre/vuepress-plugin-firebase v0.1.0

Weekly downloads
1
License
GPL-3.0-or-later
Repository
github
Last release
5 years ago

Vuepress Plugin to setup Firebase

Introduction

This plugin installs @paulbarre/vue-firebase package into your Vuepress application.

Check out its documentation to see how to configure this plugin, the options are exactly the same.

Installation

Install the package into your Vue application:

npm i @paulbarre/vuepress-plugin-firebase @paulbarre/vue-firebase firebase

Next step needs to configure the plugin into your application. Edit your .vuepress\config.js file:

module.exports = {
    plugins: [
        ...
        [
            '@paulbarre/firebase',
            {
                config: {
                    ...
                },
                firestore: {
                    ...
                }
            }
        ]
    ]
}

Check out Vuepress' official documentation to see how to setup a plugin.