-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.dev.js
29 lines (28 loc) · 997 Bytes
/
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
const { merge } = require('webpack-merge');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const CommonConfig = require('./webpack.common');
module.exports = function (env) {
const commonEnv = env;
commonEnv.widgetURL = `http://localhost:9000/bootstrap.js`;
return merge(CommonConfig(commonEnv), {
devtool: 'inline-cheap-module-source-map',
mode: 'development',
devServer: {
port: 9001,
allowedHosts: 'all',
},
plugins: [
new HtmlWebpackPlugin({
template: 'src/index.ejs',
title: 'Annoto Kaltura Playkit Plugin',
description: 'Annoto Kaltura Playkit Plugin',
inject: false,
scriptLoading: 'blocking',
'meta': {
'viewport': 'width=device-width, initial-scale=1, shrink-to-fit=no',
'theme-color': '#EA5451',
}
}),
]
});
};