forked from adminkit/adminkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
125 lines (123 loc) · 3.08 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
const Webpack = require("webpack");
const Path = require("path");
const TerserPlugin = require("terser-webpack-plugin");
const MiniCssExtractPlugin = require("mini-css-extract-plugin");
const OptimizeCSSAssetsPlugin = require("optimize-css-assets-webpack-plugin");
const CopyWebpackPlugin = require("copy-webpack-plugin");
const HardSourceWebpackPlugin = require("hard-source-webpack-plugin");
const FileManagerPlugin = require("filemanager-webpack-plugin");
const opts = {
rootDir: process.cwd(),
devBuild: process.env.NODE_ENV !== "production"
};
module.exports = {
entry: {
app: "./src/js/app.js"
},
mode: process.env.NODE_ENV === "production" ? "production" : "development",
devtool:
process.env.NODE_ENV === "production" ? "source-map" : "inline-source-map",
output: {
path: Path.join(opts.rootDir, "../src/assets/public"),
pathinfo: opts.devBuild,
filename: "js/[name].js",
chunkFilename: 'js/[name].js',
},
performance: { hints: false },
optimization: {
minimizer: [
new TerserPlugin({
parallel: true,
terserOptions: {
ecma: 5
}
}),
new OptimizeCSSAssetsPlugin({})
],
runtimeChunk: false
},
plugins: [
// Extract css files to seperate bundle
new MiniCssExtractPlugin({
filename: "css/app.css",
chunkFilename: "css/app.css"
}),
// Copy fonts and images to dist
new CopyWebpackPlugin({
patterns: [
{ from: "src/fonts", to: "fonts" },
{ from: "src/img", to: "img" }
]
}),
// Speed up webpack build
new HardSourceWebpackPlugin(),
// Copy dist folder to static
new FileManagerPlugin({
onEnd: {
copy: [{ source: "./dist/**/*", destination: "./static" }]
}
})
],
module: {
rules: [
// Babel-loader
{
test: /\.js$/,
exclude: /(node_modules)/,
loader: ["babel-loader?cacheDirectory=true"]
},
// Css-loader & sass-loader
{
test: /\.(sa|sc|c)ss$/,
use: [
MiniCssExtractPlugin.loader,
"css-loader",
"postcss-loader",
"sass-loader"
]
},
// Load fonts
{
test: /\.(woff(2)?|ttf|eot|svg)(\?v=\d+\.\d+\.\d+)?$/,
use: [
{
loader: "file-loader",
options: {
name: "/[name].[ext]",
outputPath: "fonts/",
publicPath: "../fonts/"
}
}
]
},
// Load images
{
test: /\.(png|jpg|jpeg|gif)(\?v=\d+\.\d+\.\d+)?$/,
use: [
{
loader: "file-loader",
options: {
name: "[name].[ext]",
outputPath: "img/",
publicPath: "../img/"
}
}
]
}
]
},
resolve: {
extensions: [".js", ".scss"],
modules: ["node_modules"],
alias: {
request$: "xhr"
}
},
devServer: {
contentBase: Path.join(__dirname, "static"),
compress: true,
port: 8080,
host: '0.0.0.0', // -- Added to work over local network
open: true
}
};