mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 12:14:41 +01:00
35 lines
829 B
TypeScript
35 lines
829 B
TypeScript
import { defineConfig } from 'vite'
|
|
import vue from '@vitejs/plugin-vue'
|
|
|
|
import ui from '../src/vite'
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
server: {
|
|
fs: {
|
|
allow: ['..']
|
|
}
|
|
},
|
|
plugins: [
|
|
vue(),
|
|
ui({
|
|
ui: {
|
|
colors: {
|
|
primary: 'green',
|
|
neutral: 'slate'
|
|
}
|
|
},
|
|
autoImport: {
|
|
imports: ['vue']
|
|
},
|
|
components: {
|
|
dirs: ['../playground/app/components']
|
|
}
|
|
})
|
|
],
|
|
optimizeDeps: {
|
|
// prevents reloading page when navigating between components
|
|
include: ['reka-ui/namespaced', 'vaul-vue', 'embla-carousel-vue', 'embla-carousel-autoplay', 'embla-carousel-auto-scroll', 'embla-carousel-auto-height', 'embla-carousel-class-names', 'embla-carousel-fade', 'embla-carousel-wheel-gestures']
|
|
}
|
|
})
|