opal-webpack-loader 0.11.2 → 0.11.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 231761fce0db6f68b21ac4084c065663d567b79776333a36244330137f91720b
|
|
4
|
+
data.tar.gz: bd9a62382e957ee5753586f69e14482d662daf385ddf7975da05781a0f3add3f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7705b03915305c31710b6c19843a83473f92186f83ac135405b91b0fed22884fbc0b1218dc73cbafd0bd8fcc77295179bed878c5d55f553b808ada33927b6a6a
|
|
7
|
+
data.tar.gz: 685b9a599a552a3bb1a8b36667816d4ce31a63a51af7a06bf67096b39afb6af5019b999610c610a3a94957b5e13d56f732f47be00b451e1a6b892ee492b9b413
|
|
@@ -99,26 +99,25 @@ const common_config = {
|
|
|
99
99
|
devServer: {
|
|
100
100
|
<%= dev_server_before %>
|
|
101
101
|
open: false,
|
|
102
|
-
lazy: false,
|
|
103
102
|
port: 3035,
|
|
104
103
|
hot: true,
|
|
105
|
-
// hotOnly: true,
|
|
106
|
-
inline: true,
|
|
107
104
|
https: false,
|
|
108
|
-
|
|
105
|
+
allowedHosts: 'all',
|
|
109
106
|
headers: {
|
|
110
107
|
"Access-Control-Allow-Origin": "*",
|
|
111
108
|
"Access-Control-Allow-Methods": "GET, POST, PUT, DELETE, PATCH, OPTIONS",
|
|
112
109
|
"Access-Control-Allow-Headers": "X-Requested-With, content-type, Authorization"
|
|
113
110
|
},
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
111
|
+
static: {
|
|
112
|
+
directory: path.resolve(__dirname, 'public'),
|
|
113
|
+
watch: {
|
|
114
|
+
// in case of problems with hot reloading uncomment the following two lines:
|
|
115
|
+
// aggregateTimeout: 250,
|
|
116
|
+
// poll: 50,
|
|
118
117
|
ignored: /\bnode_modules\b/
|
|
118
|
+
}
|
|
119
119
|
},
|
|
120
|
-
|
|
121
|
-
useLocalIp: false
|
|
120
|
+
host: 'local-ip'
|
|
122
121
|
}
|
|
123
122
|
};
|
|
124
123
|
|
|
@@ -84,26 +84,25 @@ const common_config = {
|
|
|
84
84
|
devServer: {
|
|
85
85
|
<%= dev_server_before %>
|
|
86
86
|
open: false,
|
|
87
|
-
lazy: false,
|
|
88
87
|
port: 3035,
|
|
89
|
-
hot:
|
|
90
|
-
// hotOnly: true,
|
|
91
|
-
inline: true,
|
|
88
|
+
hot: false,
|
|
92
89
|
https: false,
|
|
93
|
-
|
|
90
|
+
allowedHosts: 'all',
|
|
94
91
|
headers: {
|
|
95
92
|
"Access-Control-Allow-Origin": "*",
|
|
96
93
|
"Access-Control-Allow-Methods": "GET, POST, PUT, DELETE, PATCH, OPTIONS",
|
|
97
94
|
"Access-Control-Allow-Headers": "X-Requested-With, content-type, Authorization"
|
|
98
95
|
},
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
96
|
+
static: {
|
|
97
|
+
directory: path.resolve(__dirname, 'public'),
|
|
98
|
+
watch: {
|
|
99
|
+
// in case of problems with hot reloading uncomment the following two lines:
|
|
100
|
+
// aggregateTimeout: 250,
|
|
101
|
+
// poll: 50,
|
|
103
102
|
ignored: /\bnode_modules\b/
|
|
103
|
+
}
|
|
104
104
|
},
|
|
105
|
-
|
|
106
|
-
useLocalIp: false
|
|
105
|
+
host: 'local-ip'
|
|
107
106
|
}
|
|
108
107
|
};
|
|
109
108
|
|