datenel-vue3/vite.config.ts
Astrian Zheng 8232a1af3f
All checks were successful
Publish to npm / publish (push) Successful in 24s
feat: add vite-plugin-libcss to package.json and update configuration
2025-02-25 13:05:39 +11:00

29 lines
633 B
TypeScript

import { defineConfig } from 'vite'
import { fileURLToPath, URL } from 'node:url'
import vue from '@vitejs/plugin-vue'
import libCss from 'vite-plugin-libcss'
// https://vite.dev/config/
export default defineConfig(({ mode }) => ({
plugins: [vue(), libCss()],
build: {
lib: {
entry: fileURLToPath(new URL('src/index.ts', import.meta.url)),
name: 'Datenel for Vue3',
},
rollupOptions: {
external: ['vue'],
output: {
globals: {
vue: 'Vue',
},
},
},
},
server: {
open: true,
port: 1926
},
root: mode === 'development' ? 'playground' : '.'
}))