File tree 4 files changed +10
-13
lines changed
4 files changed +10
-13
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " nginx-proxy-manager" ,
3
- "version" : " 2.0.3 " ,
3
+ "version" : " 2.0.4 " ,
4
4
"description" : " A beautiful interface for creating Nginx endpoints" ,
5
5
"main" : " src/backend/index.js" ,
6
6
"devDependencies" : {
30
30
"style-loader" : " ^0.22.1" ,
31
31
"tabler-ui" : " git+https://github.com/tabler/tabler.git" ,
32
32
"underscore" : " ^1.8.3" ,
33
- "webpack" : " ^4.12.0 " ,
34
- "webpack-cli" : " ^3.0.8 " ,
33
+ "webpack" : " ^4.25.1 " ,
34
+ "webpack-cli" : " ^3.1.2 " ,
35
35
"webpack-visualizer-plugin" : " ^0.1.11"
36
36
},
37
37
"dependencies" : {
Original file line number Diff line number Diff line change 5
5
<span class =" loader" ></span >
6
6
</div >
7
7
8
- <script type =" text/javascript" src =" /js/main.js?v=<%= version %>" ></script >
8
+ <script type =" text/javascript" src =" /js/main.bundle. js?v=<%= version %>" ></script >
9
9
<% - include partials/ footer .ejs %>
Original file line number Diff line number Diff line change 5
5
<span class =" loader" ></span >
6
6
</div >
7
7
8
- <script type =" text/javascript" src =" /js/login .js?v=<%= version %>" ></script >
8
+ <script type =" text/javascript" src =" /js/main.bundle .js?v=<%= version %>" ></script >
9
9
<% - include partials/ footer .ejs %>
Original file line number Diff line number Diff line change @@ -10,9 +10,10 @@ module.exports = {
10
10
login : './src/frontend/js/login.js'
11
11
} ,
12
12
output : {
13
- path : path . resolve ( __dirname , 'dist' ) ,
14
- filename : 'js/[name].js' ,
15
- publicPath : '/'
13
+ path : path . resolve ( __dirname , 'dist' ) ,
14
+ filename : 'js/[name].bundle.js' ,
15
+ chunkFilename : 'js/[name].bundle.[id].js' ,
16
+ publicPath : '/'
16
17
} ,
17
18
resolve : {
18
19
alias : {
@@ -108,10 +109,6 @@ module.exports = {
108
109
to : 'images' ,
109
110
toType : 'dir' ,
110
111
context : '/app'
111
- } ] ) ,
112
- new webpack . optimize . LimitChunkCountPlugin ( {
113
- maxChunks : 1 , // Must be greater than or equal to one
114
- minChunkSize : 999999999
115
- } )
112
+ } ] )
116
113
]
117
114
} ;
You can’t perform that action at this time.
0 commit comments