mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 12:14:41 +01:00
9 lines
213 B
TypeScript
9 lines
213 B
TypeScript
import { defineNuxtConfig } from 'nuxt3'
|
|
|
|
// https://v3.nuxtjs.org/docs/directory-structure/nuxt.config
|
|
export default defineNuxtConfig({
|
|
buildModules: [
|
|
['../src', { primary: 'blue', prefix: 'nu' }]
|
|
]
|
|
})
|