forked from dousaitis/react-rollup-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrollup.config.dev.js
38 lines (37 loc) · 895 Bytes
/
rollup.config.dev.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
import serve from 'rollup-plugin-serve';
import livereload from 'rollup-plugin-livereload';
import babel from '@rollup/plugin-babel';
import { nodeResolve } from '@rollup/plugin-node-resolve';
import commonjs from '@rollup/plugin-commonjs';
import replace from '@rollup/plugin-replace';
export default {
input: 'src/index.js',
plugins: [
replace({
'process.env.NODE_ENV': JSON.stringify('development')
}),
nodeResolve({
extensions: ['.js', '.jsx']
}),
babel({
presets: ['@babel/preset-react']
}),
commonjs({
include: ['node_modules/**']
}),
serve({
open: true,
verbose: true,
contentBase: ['', 'dist'],
historyApiFallback: true,
host: 'localhost',
port: 3000
}),
livereload({ watch: 'dist' })
],
output: {
file: 'dist/bundle.js',
format: 'iife',
sourcemap: true
}
};