-
Notifications
You must be signed in to change notification settings - Fork 0
/
vite.config.js
42 lines (36 loc) · 1.35 KB
/
vite.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
import { resolve } from 'path'
import vue from '@vitejs/plugin-vue'
import { defineConfig } from 'vite'
import cssInjectedByJsPlugin from 'vite-plugin-css-injected-by-js'
// Set to this to the name of this collection of components
// This must match node-red-dashboard-2.widgets[libraryName] in package.json
const LIBRARY_NAME = 'ui-flowviewer'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [vue(), cssInjectedByJsPlugin()],
build: {
// Generate a source map in dev mode
sourcemap: process.env.NODE_ENV === 'development',
// Configure build as a UMD library
lib: {
entry: resolve(__dirname, 'ui/index.js'),
name: LIBRARY_NAME,
formats: ['umd'],
fileName: (format, entryName) => `${LIBRARY_NAME}.${format}.js`
},
// Utilise Node-RED's handling of /resources folder for the build output
outDir: './resources',
// Declare dependencies that shouldn't be bundled into the library
rollupOptions: {
// Don't rollup the Vue dependency into the build
external: ['vue', 'vuex'],
output: {
// Provide global variables to use in the UMD build
globals: {
vue: 'Vue',
vuex: 'vuex'
}
}
}
}
})