forked from botfront/rasa-webchat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.dev.js
58 lines (57 loc) · 1.32 KB
/
webpack.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
const path = require('path');
const HtmlWebpackPlugin = require('html-webpack-plugin');
module.exports = {
// entry: ['babel-polyfill', './index.js'],
entry: './index.js',
output: {
path: path.join(__dirname, '/lib'),
filename: 'index.js',
library: 'WebChat',
libraryTarget: 'umd'
},
devServer: {
stats: 'errors-only',
host: process.env.HOST, // Defaults to `localhost`
port: process.env.PORT, // Defaults to 8080
open: true, // Open the page in browser
contentBase: path.resolve(__dirname, '/lib')
},
resolve: {
extensions: ['.js', '.jsx']
},
mode: 'development',
devtool: 'eval-source-map',
module: {
rules: [{
test: /\.(js|jsx)$/,
exclude: /node_modules/,
loader: 'babel-loader'
}, {
test: /\.scss$/,
use: [
{ loader: 'style-loader' },
{ loader: 'css-loader' },
{
loader: 'sass-loader',
options: {
includePaths: [path.resolve(__dirname, 'src/scss/')]
}
}
]
}, {
test: /\.(jpg|png|gif|svg)$/,
use: {
loader: 'url-loader'
}
}]
},
plugins: [
new HtmlWebpackPlugin({
title: 'Web Chat Widget Test',
filename: 'index.html',
inject: false,
template: 'dev/src/index.html',
showErrors: true
})
]
};