mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-14 10:04:05 +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
|
||
|
},
|
||
|
],
|
||
|
})
|