-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
49 lines (43 loc) · 1.64 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
console.log('📦 [load:module] nuxt-module-plausible')
// ///////////////////////////////////////////////////////////////////// Imports
// -----------------------------------------------------------------------------
import Path from 'path'
import { defineNuxtModule, addPlugin } from '@nuxt/kit'
// ////////////////////////////////////////////////////////////////////// Config
// -----------------------------------------------------------------------------
const meta = {
name: '@undone-labs/nuxt-module-plausible',
configKey: 'nuxtModulePlausible',
compatibility: {
nuxt: '^3.0.0'
}
}
// /////////////////////////////////////////////////////////////////// Functions
// -----------------------------------------------------------------------------
// ///////////////////////////////////////////////////////////////////// Plugins
const plugins = [
{
src: Path.resolve(__dirname, 'plugin.js'),
filename: 'nuxt-module-plausible/index.js'
}
]
// ///////////////////////////////////////////////////////////// registerPlugins
const registerPlugins = () => {
plugins.forEach((plugin) => {
addPlugin(plugin)
console.log('🔌 [nuxt-module-plausible:plugin]')
})
}
// /////////////////////////////////////////////////////////////////////// Setup
// -----------------------------------------------------------------------------
const setup = async (_, nuxt) => {
if (nuxt.options.plausible.include) {
registerPlugins()
}
}
// ////////////////////////////////////////////////////////////////////// Export
// -----------------------------------------------------------------------------
export default defineNuxtModule({
meta,
setup
})