-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
46 lines (42 loc) · 1.16 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
const webpack = require('webpack');
const HtmlWebPackPlugin = require('html-webpack-plugin');
// checks if it is script prod or dev
// looks for the corresponding env file
// return environment variables
const checkEnv = require('./checkEnv.setup');
const HtmlPlugin = new HtmlWebPackPlugin({
template: './src/index.html',
filename: './index.html',
});
// the env object is the one pass in the command script
module.exports = env => {
const envKeys = checkEnv(env); // corresponding env variables
const EnvironmentPlugin = new webpack.DefinePlugin(envKeys); // set enviromental variables in the compile time
return {
entry: './src/index.js', //default value
module: {
rules: [
{
test: /\.js$/,
exclude: /node_modules/,
use: {
loader: 'babel-loader',
},
},
{
test: /\.(s*)css$/,
use: ['style-loader', 'css-loader', 'sass-loader'],
},
{
test: /\.(png|jpe?g|gif)$/i,
use: [
{
loader: 'file-loader',
},
],
},
],
},
plugins: [HtmlPlugin, EnvironmentPlugin],
};
};