mirror of
https://github.com/nuxt/nuxt.git
synced 2025-02-08 18:02:24 +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'
|
||
|
},
|
||
|
})
|