-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathvite.config.js
More file actions
72 lines (68 loc) · 1.53 KB
/
vite.config.js
File metadata and controls
72 lines (68 loc) · 1.53 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
import { defineConfig } from 'vite';
import { resolve } from 'path';
import autoprefixer from 'autoprefixer';
import cssnano from 'cssnano';
import { imageProcessorPlugin } from './vite-plugins/image-processor-plugin.js';
export default defineConfig({
plugins: [
imageProcessorPlugin()
],
build: {
outDir: 'dist',
cssCodeSplit: false,
rollupOptions: {
input: {
main: resolve(__dirname, 'src/index.js')
},
external: ['jquery', 'jquery-ui-package', 'jquery-ui-touch-punch'],
output: {
entryFileNames: 'jqueryui-mosaico-cropper.min.js',
assetFileNames: 'jqueryui-mosaico-cropper.min.css',
format: 'umd',
name: 'MosaicoCropper',
globals: {
'jquery': 'jQuery',
'jquery-ui-package': 'jQuery.ui',
'jquery-ui-touch-punch': 'jQuery.ui.touchPunch'
}
}
},
minify: 'terser',
terserOptions: {
format: {
comments: 'some'
},
compress: {
drop_console: false,
drop_debugger: true
}
},
sourcemap: true
},
css: {
preprocessorOptions: {
less: {
javascriptEnabled: true,
charset: "utf-8"
}
},
postcss: {
plugins: [
autoprefixer(),
cssnano({
preset: ['default', {
normalizeCharset: false // Preserve @charset directive
}]
})
]
},
devSourcemap: true
},
server: {
port: 9008,
host: '0.0.0.0',
watch: {
usePolling: true
}
}
});