forked from viktorstrate/react-mathquill
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebpack.examples.js
More file actions
36 lines (34 loc) · 767 Bytes
/
Copy pathwebpack.examples.js
File metadata and controls
36 lines (34 loc) · 767 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
const path = require('path')
const HtmlWebPackPlugin = require('html-webpack-plugin')
const htmlPlugin = new HtmlWebPackPlugin({
template: path.resolve(__dirname, 'examples/src/index.html'),
filename: './index.html',
})
module.exports = {
entry: path.resolve(__dirname, 'examples/src/App.js'),
output: {
path: path.resolve(__dirname, 'examples/dist'),
filename: 'script.js',
},
target: 'web',
module: {
rules: [
{
test: /\.js$/,
exclude: /node_modules/,
use: {
loader: 'babel-loader',
},
},
{
test: /\.css$/,
use: ['style-loader', 'css-loader'],
},
],
},
optimization: {
minimize: false,
},
devtool: 'source-map',
plugins: [htmlPlugin],
}