mirror of
https://github.com/nuxt/nuxt.git
synced 2025-01-22 11:22:43 +00:00
11 lines
233 B
TypeScript
11 lines
233 B
TypeScript
import { defineNuxtModule, useNuxt } from 'nuxt/kit'
|
|
|
|
export default defineNuxtModule({
|
|
setup (options, nuxt) {
|
|
nuxt.options.alias['@foo'] = '/path/to/foo'
|
|
|
|
const nuxt2 = useNuxt()
|
|
nuxt2.options.buildId = 'foo'
|
|
},
|
|
})
|