mirror of
https://github.com/Litlyx/litlyx
synced 2025-12-09 23:48:36 +01:00
15 lines
281 B
TypeScript
15 lines
281 B
TypeScript
// https://nuxt.com/docs/api/configuration/nuxt-config
|
|
|
|
import path from 'path';
|
|
|
|
export default defineNuxtConfig({
|
|
css: [path.join(__dirname, './assets/lyxui.scss')],
|
|
modules: ['@nuxt/ui'],
|
|
components: [
|
|
{
|
|
path: './components',
|
|
prefix: 'LyxUi'
|
|
},
|
|
]
|
|
})
|