-
Notifications
You must be signed in to change notification settings - Fork 7
/
rollup.config.js
48 lines (46 loc) · 1.26 KB
/
rollup.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
43
44
45
46
47
48
import process from 'process';
// Import rollup plugins
import html from '@web/rollup-plugin-html';
import { copy } from '@web/rollup-plugin-copy';
import resolve from '@rollup/plugin-node-resolve';
import multiInput from 'rollup-plugin-multi-input';
import { terser } from 'rollup-plugin-terser';
import minifyHTML from 'rollup-plugin-minify-html-literals';
import summary from 'rollup-plugin-summary';
export default {
plugins: [
multiInput({ relative: 'public/' }),
// Entry point for application build; can specify a glob to build multiple
// HTML files for non-SPA app
html({
input: '*.html',
rootDir: 'public',
flattenOutput: false,
extractAssets: false,
}),
// Resolve bare module specifiers to relative paths
resolve({
jail: `${process.cwd()}/../../`,
// dedupe: true,
}),
// Minify HTML template literals
minifyHTML(),
// Minify JS
terser({
ecma: 2020,
module: true,
warnings: true,
}),
// Print bundle summary
summary(),
// Optional: copy any static assets to build directory
copy({
patterns: ['**/wallet/**/*', '**/locator/**/*'],
rootDir: 'public',
}),
],
output: {
dir: 'build',
},
preserveEntrySignatures: 'strict',
};