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