Component import from other project
All checks were successful
CI / test-and-build (push) Successful in 9m32s

This commit is contained in:
2026-03-24 09:50:34 +01:00
parent d08a148b7e
commit 6407ea531e
28 changed files with 4744 additions and 7 deletions

29
vite.config.ts Normal file
View File

@@ -0,0 +1,29 @@
import { defineConfig } from 'vitest/config'
import vue from '@vitejs/plugin-vue'
import tailwindcss from '@tailwindcss/vite'
import { resolve } from 'path'
export default defineConfig({
plugins: [
tailwindcss(),
vue(),
],
test: {
environment: 'jsdom',
},
build: {
lib: {
entry: resolve(__dirname, 'src/index.ts'),
name: 'LimelightCommonWebComponents',
fileName: 'index',
},
rollupOptions: {
external: ['vue'],
output: {
globals: {
vue: 'Vue',
},
},
},
},
})