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