-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathwebpack.config.js
125 lines (119 loc) · 3.73 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
const fs = require('fs')
const jsonContent = fs.readFileSync('./theme.config.json')
const themeConfig = JSON.parse(jsonContent)
const path = require('path')
const MiniCssExtractPlugin = require('mini-css-extract-plugin')
const BrowserSyncPlugin = require('browser-sync-webpack-plugin')
const postcssPresetEnv = require('postcss-preset-env')
module.exports = {
entry: {
frontEnd: './src/index.js',
backEnd: './src/admin-index.js',
login: './src/admin-login.js',
//add separate js files here if you dont want them concatenated into the others
},
resolve: {
alias: {
src: path.resolve(__dirname, 'src/'),
inc: path.resolve(__dirname, 'inc/'),
root: path.resolve(__dirname, '.'),
}
},
devtool: 'source-map',
output: {
path: path.resolve(__dirname, 'dist'),
filename: '[name]_bundle.js',
},
module: {
//runs these and transforms on the code
rules: [
{
test: /\.(png|jpe?g|gif)$/i,
use: [
{
loader: 'file-loader',
options: {
name: '[name].[ext]',
outputPath: 'images',
}
},
],
},
{ test: /\.svg$/, use: 'svg-inline-loader' },
{
test: /\.(js)$/, exclude: /node_modules/, use: [
{
loader: 'babel-loader',
options: {
presets: ['@babel/preset-env']
}
},
'import-glob-loader']
}, //turns jsx into js the browser can understand and also allows for es6 to be used
{
test: /\.css$/, use: [{
loader: MiniCssExtractPlugin.loader
}, 'css-loader']
},
{
test: /\.s[ac]ss$/i, use: [
{
loader: MiniCssExtractPlugin.loader
}, 'css-loader',
{
loader: 'postcss-loader', options: {
postcssOptions: {
plugins: [
[
'postcss-preset-env',
{
// Options
},
],
]
}
}
},
{ loader: 'resolve-url-loader' },
{
loader: 'sass-loader',
options: {
implementation: require('sass')
}
},
'import-glob-loader'
]
},
]
},
plugins: [
new MiniCssExtractPlugin(),
new BrowserSyncPlugin({
host: themeConfig.server,
proxy: `${themeConfig.ssl ? 'https' : 'http'}://${themeConfig.server}`,
https: true,
files: [
'**/*.php',
'**/*.css',
{
match: '**/*.js',
options: {
ignored: 'dist/**/*.js'
}
}
],
//if using a local server with .local, will load that domain
open: themeConfig.server.includes('.local') ? 'external':'local',
//magic for seeing changes on a live site. no local server needed. However php cannot be changed
serveStatic: ['.'],
rewriteRules: [
{
match: /wp-content\/themes\/\w+\//g,
replace: ''
}
],
reloadDelay: 0
}, { reload: false } //make css load without reload}
),
]
}