mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 16:43:55 +00:00
9 lines
186 B
TypeScript
9 lines
186 B
TypeScript
export default defineNuxtConfig({
|
|
modules: [
|
|
function (_options, nuxt) {
|
|
// @ts-expect-error not valid nuxt option
|
|
nuxt.options.__installed_layer = true
|
|
},
|
|
],
|
|
})
|