mirror of
https://github.com/movie-web/providers.git
synced 2025-09-13 15:13:25 +00:00
22 lines
363 B
TypeScript
Executable File
22 lines
363 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'
|
|
]
|
|
})
|