Javascript – How to set loadingTemplate inside custom Nuxt Module
I'm building a nuxt module, and want to set loadingTemplate within this module. What I tried so far is modifying devServer inside module like below (But no luck) import { loadingTemplate } from './loadingTemplate' export default defineNuxtModule<ModuleOptions>({ ... async setup…