-
Notifications
You must be signed in to change notification settings - Fork 27
/
webpack.common.js
47 lines (46 loc) · 1.11 KB
/
webpack.common.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
/* eslint-disable import/no-extraneous-dependencies */
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
/* eslint-enable */
module.exports = {
plugins: [
new MiniCssExtractPlugin({
// Options similar to the same options in webpackOptions.output
// both options are optional
filename: 'bundle.css',
chunkFilename: '[id].css',
}),
],
entry: ['./src/assets/javascripts/webpack-entry.js'],
output: {
path: `${__dirname}/assets/dist`,
// publicPath: '/assets',
filename: 'bundle.js',
},
module: {
rules: [
{
test: /\.(js|jsx)$/,
exclude: /node_modules/,
use: ['babel-loader'],
},
{
test: /\.scss$/,
use: [
{
loader: MiniCssExtractPlugin.loader,
options: {
// you can specify a publicPath here
// by default it use publicPath in webpackOptions.output
publicPath: '../',
},
},
'css-loader',
'sass-loader',
],
},
],
},
resolve: {
extensions: ['.js', '.jsx'],
},
};