-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
45 lines (43 loc) · 962 Bytes
/
webpack.config.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
const path = require('path');
const HtlmWebpackPlugin = require('html-webpack-plugin');
const SRC_DIR = path.join(__dirname, '/src');
const BUILD_DIR = path.join(__dirname, '/build');
module.exports = {
entry: `${SRC_DIR}/index.js`,
output: {
filename: 'bundle.js',
path: BUILD_DIR,
publicPath: '/',
},
module: {
rules: [
{
test: /\.js/,
exclude: /node_modules/,
use: ['babel-loader'],
},
{
test: /\.(png|jpe?g|gif|svg)$/i,
use: ['file-loader'],
// options: {
// name: '[name].[ext]',
// outputPath: path.join('/static', 'media'),
// },
},
{
test: /\.(sc|c)ss$/,
use: [
'style-loader',
'css-loader',
'sass-loader',
],
},
],
},
plugins: [
new HtlmWebpackPlugin({ template: `${SRC_DIR}/index.html` }),
],
devServer: {
historyApiFallback: true,
},
};