Browse
For agents
About
Strong Testimonials
/
3.3.7
Strong Testimonials
v3.3.7
Switch version
3.3.7
3.3.6
3.3.5
3.3.4
3.3.3
3.3.2
3.3.1
trunk
1.0.1
2.30.9
2.31.10
2.32
2.32.1
2.32.2
2.32.3
2.32.4
2.33
2.34
2.35
2.36
2.37
2.38
2.38.1
2.39
2.39.1
All 101 releases
Overview
Code
strong-testimonials
/
webpack.config.react-apps.js
webpack.config.react-apps.js
8 lines
229 B
Find file
t
No matching file
Up and down to move
Enter to open
Esc to close
Raw
Download
Zip
View raw
1
const
defaultConfig
=
require
(
'
@wordpress/scripts/config/webpack.config
'
)
;
2
const
isProduction
=
process
.
env
.
NODE_ENV
===
'
production
'
;
3
4
module
.
exports
=
{
5
...
defaultConfig
,
6
mode
:
isProduction
?
'
production
'
:
'
development
'
,
7
}
;
8