-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathvite.config.js
More file actions
50 lines (48 loc) · 1.06 KB
/
vite.config.js
File metadata and controls
50 lines (48 loc) · 1.06 KB
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
43
44
45
46
47
48
49
50
import { fileURLToPath, URL } from 'node:url';
import { defineConfig } from 'vite';
import vue from '@vitejs/plugin-vue';
import { resolve } from 'path';
import dotenv from 'dotenv';
import { viteStaticCopy } from 'vite-plugin-static-copy';
dotenv.config(); // load env vars from .env
// https://vitejs.dev/config/
export default defineConfig({
plugins: [
vue(),
viteStaticCopy({
targets: [
{
src: 'src/styles/widget.css',
dest: 'src'
},
{
src: 'widgetcontent.html',
dest: '.'
},
{
src: 'src/assets/*',
dest: 'src/assets'
}
]
})
],
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url))
}
},
build: {
emptyOutDir: true,
rollupOptions: {
input: {
main: resolve('index.html'),
widget: resolve('src/widget.js'),
},
output: {
assetFileNames: 'assets/[name].[ext]',
chunkFileNames: '[name].js',
entryFileNames: '[name].js'
}
},
},
})