-
-
Notifications
You must be signed in to change notification settings - Fork 408
/
webpack.config.js
executable file
·106 lines (86 loc) · 3.01 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
// Entry Point -> Output
const webpack = require("webpack")
const CompressionPlugin = require("compression-webpack-plugin");
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
const path = require("path");
const GoogleFontsPlugin = require("@beyonk/google-fonts-webpack-plugin")
//console.log("node env", process.env.NODE_ENV);
//process.env.NODE_ENV = process.env.NODE_ENV || "development"
//console.log("node env", process.env.NODE_ENV);
module.exports = (env) => {
//console.log("env docker", process.env.DOCKER);
if (env === "test") {
console.log("Loading test env variables")
require("dotenv").config({path: ".env.test"})
} else if (env === "development") {
console.log("Loading development env variables")
require("dotenv").config({path: ".env.development"})
} else {
console.log("Loading production env variables")
require("dotenv").config({path: ".env.production"});
require("dotenv").config({path: "docker-variables.env"});
}
console.log("env", env);
const isProduction = env === "production"
console.log("is prod", isProduction);
const CSSExtract = new MiniCssExtractPlugin({ filename: 'styles.css' });
return {
entry:'./src/app.js',
output: {
path: path.join(__dirname, "public", "dist"),
filename: "bundle.js"
},
module: {
rules: [{
loader: "babel-loader",
test: /\.js$/,
exclude: /node_modules/
}, {
test: /\.s?css$/,
use: [
{
loader: MiniCssExtractPlugin.loader
},
{
loader: 'css-loader',
options: {
sourceMap: true
}
},
{
loader: 'sass-loader',
options: {
implementation: require("dart-sass") ,
sourceMap: true
}
}
]
},
]
},
plugins: [
CSSExtract,
new webpack.DefinePlugin({
"process.env.PORT": JSON.stringify(process.env.PORT),
"process.env.REMOTE_URL": JSON.stringify(process.env.REMOTE_URL),
"process.env.ENABLE_VIDEO_TRANSCODING": JSON.stringify(process.env.ENABLE_VIDEO_TRANSCODING),
"process.env.DISABLE_STORAGE": JSON.stringify(process.env.DISABLE_STORAGE),
"process.env.COMMERCIAL_MODE" : JSON.stringify(process.env.COMMERCIAL_MODE)
}),
new CompressionPlugin(),
new GoogleFontsPlugin({
fonts: [
{ family: "Roboto", variants: ["100", "300", "400", "500", "700"], display: "swap" }
],
outputDir: "/dist/",
/* ...options */
})
],
devtool: isProduction ? "source-map" : "inline-source-map",
devServer: {
contentBase: path.join(__dirname, "public"),
historyApiFallback: true,
publicPath: "/dist/"
},
}
}