forked from bhi10/lit-movies
-
Notifications
You must be signed in to change notification settings - Fork 4
/
rollup.config.js
35 lines (34 loc) · 950 Bytes
/
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
import html from "@web/rollup-plugin-html";
import {copy} from "@web/rollup-plugin-copy";
import resolve from "@rollup/plugin-node-resolve";
import {terser} from "rollup-plugin-terser";
import minifyHTML from "rollup-plugin-minify-html-literals";
import summary from "rollup-plugin-summary";
export default {
plugins: [
// Entry point for application build; can specify a glob to build multiple HTML files for non-SPA app
html({
input: 'index.html',
}),
// Resolve bare module specifiers to relative paths
resolve(),
// Minify HTML template literals
minifyHTML(),
// Minify JS
terser({
ecma: 2021,
module: true,
warnings: true,
}),
// Print bundle summary
summary(),
// Optional: copy any static assets to build directory
copy({
patterns: ['src/img/**/*', 'src/locales/**/*']
})
],
output: {
dir: 'dist',
},
preserveEntrySignatures: 'strict',
};