-
Notifications
You must be signed in to change notification settings - Fork 1
/
webpack.config.js
139 lines (137 loc) · 3.59 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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
var webpack = require("webpack");
var path = require("path");
var MiniCssExtractPlugin = require("mini-css-extract-plugin");
var CopyWebpackPlugin = require("copy-webpack-plugin");
var HtmlWebpackPlugin = require("html-webpack-plugin");
var options = {
entry: './src/index.js',
output: {
path: path.resolve(__dirname, "build"),
filename: "bundle.js",
publicPath:'/'
},
module: {
rules: [
{/** Images Rules */
test: /\.(jpe?g|png|gif|svg)$/i,
loaders: [
// {
// loader: 'url-loader',
// options:{ limit: 18192},
// },
'file-loader?context=src/icons/[path][name].[ext]',
{
// images loader
loader: 'image-webpack-loader',
options: {
disable: process.env.NODE_ENV != 'production' && process.env.NODE_ENV != 'compileTesting',
mozjpeg: {
progressive: true,
quality: 65,
},
optipng: {
enabled: true,
},
pngquant: {
quality: '60-80',
speed: 3
},
gifsicle: {
interlaced: false
},
}
},
],
exclude: /node_modules/,
// include: __dirname
},
{/**Fonts and Svgs */
test: /\.(ttf|otf|eot|svg|woff(2)?)(\?[a-z0-9]+)?$/,
loader: 'file-loader?name=fonts/[name].[ext]'
},
{/**Styles Scss */
test: /\.(scss)$/,
use: [
MiniCssExtractPlugin.loader,
{
loader: "css-loader",
},
"sass-loader"
]
},
{/**Styles css */
test: /\.css$/,
use:[
{
loader: MiniCssExtractPlugin.loader,
options: { publicPath: '../'},
},
"css-loader"
]
},
{/** Jsx && Js */
test: /\.(jsx|js)$/,
exclude: /node_modules/ ,
use:{loader: 'babel-loader'},
}
]
},
resolve: {
// These options change how modules are resolved
extensions: [
'.js',
'.jsx',
'.json',
'.scss',
'.css',
'.jpeg',
'.jpg',
'.gif',
'.png'
], // Automatically resolve certain extensions
modules: [
'node_modules',
path.resolve( __dirname, './node_modules' ),
path.resolve( __dirname, './src' )
],
alias: {
// Create aliases
icons: path.resolve(__dirname, 'src/icons') ,
images: path.resolve(__dirname, 'src/images')
}
},
plugins: [
new HtmlWebpackPlugin({
template: 'src/popup/popup.html',
filename: "./popup.html"
}),
new HtmlWebpackPlugin({
template: 'src/index.html',
filename: "./index.html"
}),
new MiniCssExtractPlugin({
filename:"styles.css",
chunkFilename:"[name].css",
}),
new webpack.HotModuleReplacementPlugin(),
// clean the build folder
// expose and write the allowed env vars on the compiled bundle
new CopyWebpackPlugin([{
from: "src/manifest.json",
transform: function (content, path) {
// generates the manifest file using the package.json informations
return Buffer.from(JSON.stringify({
description: process.env.npm_package_description,
version: process.env.npm_package_version,
...JSON.parse(content.toString())
}))
}
}]),
],
devServer:{
contentBase: path.resolve(__dirname, 'build'),
hot: true
},
devtool: 'eval-source-map'
};
module.exports = options;