mirror of
https://github.com/nuxt/nuxt.git
synced 2025-01-22 19:32:40 +00:00
13 lines
247 B
TypeScript
13 lines
247 B
TypeScript
import { loadNuxt } from "@nuxt/kit"
|
|
|
|
import nuxtA from "./nuxt-a/nuxt.config"
|
|
import nuxtB from "./nuxt-b/nuxt.config"
|
|
import { resolve } from "path"
|
|
|
|
|
|
loadNuxt({
|
|
cwd: resolve ('nuxt-a'),
|
|
})
|
|
loadNuxt({
|
|
cwd: resolve('nuxt-b'),
|
|
}) |