mirror of
https://github.com/p-stream/providers.git
synced 2026-01-11 20:10:33 +00:00
17 lines
346 B
TypeScript
Executable file
17 lines
346 B
TypeScript
Executable file
export default defineNuxtConfig({
|
|
// https://github.com/nuxt-themes/docus
|
|
extends: '@nuxt-themes/docus',
|
|
|
|
css: ['@/assets/css/main.css'],
|
|
|
|
build: {
|
|
transpile: ['chalk'],
|
|
},
|
|
|
|
modules: [
|
|
// https://github.com/nuxt-modules/plausible
|
|
'@nuxtjs/plausible',
|
|
// https://github.com/nuxt/devtools
|
|
'@nuxt/devtools',
|
|
],
|
|
});
|