-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrollup.config.demo.js
More file actions
38 lines (37 loc) · 907 Bytes
/
Copy pathrollup.config.demo.js
File metadata and controls
38 lines (37 loc) · 907 Bytes
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
import livereload from 'rollup-plugin-livereload';
import resolve from '@rollup/plugin-node-resolve';
import commonjs from '@rollup/plugin-commonjs';
import replace from '@rollup/plugin-replace';
import { babel } from '@rollup/plugin-babel';
import serve from 'rollup-plugin-serve';
export default {
input: 'demo/app.js',
output: {
file: 'public/bundle.js',
format: 'iife'
},
plugins: [
resolve(),
replace({
preventAssignment: true,
values: {
'process.env.NODE_ENV': JSON.stringify('production')
}
}),
babel({
babelHelpers: 'bundled',
presets: [
'@babel/preset-react'
]
}),
commonjs(),
serve({
contentBase: [ 'public' ],
openPage: '/index.html',
host: 'localhost',
port: 3000,
open: true
}),
livereload({ watch: 'dist' })
]
};