forked from performant-software/react-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
49 lines (45 loc) · 1.14 KB
/
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
46
47
48
49
const dotenv = require('dotenv');
const path = require('path');
const { CleanWebpackPlugin } = require('clean-webpack-plugin');
const nodeExternals = require('webpack-node-externals');
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
dotenv.config();
const mode = process.env.NODE_ENV;
let devtool = 'source-map';
if (mode === 'development') {
devtool = 'inline-source-map';
}
module.exports = {
mode,
devtool,
entry: './src/index.js',
externals: [nodeExternals()],
output: {
filename: 'index.js',
path: path.resolve(__dirname, 'build'),
library: '',
libraryTarget: 'commonjs2'
},
plugins: [
new CleanWebpackPlugin(),
new MiniCssExtractPlugin()
],
module: {
rules: [{
test: /\.(js|jsx)$/,
exclude: /node_modules/,
use: ['babel-loader']
}, {
test: /\.css$/,
use: [MiniCssExtractPlugin.loader, 'css-loader'],
include: path.resolve(__dirname, './src')
}, {
test: /\.scss$/,
use: ['style-loader', 'css-loader', 'sass-loader'],
include: path.resolve(__dirname, './src')
}, {
test: /\.xml$/,
use: 'raw-loader'
}]
}
};