11 lines
202 B
TypeScript
11 lines
202 B
TypeScript
// https://nuxt.com/docs/api/configuration/nuxt-config
|
|
|
|
import yaml from '@rollup/plugin-yaml'
|
|
|
|
export default defineNuxtConfig({
|
|
devtools: { enabled: true },
|
|
vite: {
|
|
plugins: [ yaml() ]
|
|
}
|
|
})
|