Skip to content

Commit 06acb6f

Browse files
authored
Merge pull request #356 from RedisInsight/bugfix/RI-2487
#RI-2487 - fix fonts
2 parents db273d9 + 03a6515 commit 06acb6f

File tree

5 files changed

+25
-24
lines changed

5 files changed

+25
-24
lines changed

Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ RUN set -ex \
5050
&& chown avahi:avahi /var/run/avahi-daemon \
5151
&& chmod 777 /var/run/avahi-daemon
5252

53+
RUN apt-get install net-tools
5354
RUN apt-get install -y dbus-x11 gnome-keyring libsecret-1-0
5455
RUN dbus-uuidgen > /var/lib/dbus/machine-id
5556

configs/webpack.config.renderer.dev.babel.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -135,8 +135,8 @@ export default merge(baseConfig, {
135135
loader: 'file-loader',
136136
options: {
137137
name: '[hash]-[name].[ext]',
138-
outputPath: 'static',
139-
publicPath: 'static',
138+
outputPath: 'fonts',
139+
publicPath: 'fonts',
140140
},
141141
},
142142
],
@@ -150,8 +150,8 @@ export default merge(baseConfig, {
150150
loader: 'file-loader',
151151
options: {
152152
name: '[hash]-[name].[ext]',
153-
outputPath: 'static',
154-
publicPath: 'static',
153+
outputPath: 'fonts',
154+
publicPath: 'fonts',
155155
},
156156
},
157157
],
@@ -169,8 +169,8 @@ export default merge(baseConfig, {
169169
loader: 'file-loader',
170170
options: {
171171
name: '[hash]-[name].[ext]',
172-
outputPath: 'static',
173-
publicPath: 'static',
172+
outputPath: 'fonts',
173+
publicPath: 'fonts',
174174
},
175175
},
176176
],

configs/webpack.config.renderer.prod.babel.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -119,8 +119,8 @@ export default merge(baseConfig, {
119119
loader: 'file-loader',
120120
options: {
121121
name: '[hash]-[name].[ext]',
122-
outputPath: 'static',
123-
publicPath: 'static',
122+
outputPath: 'fonts',
123+
publicPath: 'fonts',
124124
},
125125
},
126126
],
@@ -134,8 +134,8 @@ export default merge(baseConfig, {
134134
loader: 'file-loader',
135135
options: {
136136
name: '[hash]-[name].[ext]',
137-
outputPath: 'static',
138-
publicPath: 'static',
137+
outputPath: 'fonts',
138+
publicPath: 'fonts',
139139
},
140140
},
141141
],
@@ -153,8 +153,8 @@ export default merge(baseConfig, {
153153
loader: 'file-loader',
154154
options: {
155155
name: '[hash]-[name].[ext]',
156-
outputPath: 'static',
157-
publicPath: 'static',
156+
outputPath: 'fonts',
157+
publicPath: 'fonts',
158158
},
159159
},
160160
],

configs/webpack.config.web.dev.babel.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -107,8 +107,8 @@ export default merge(commonConfig, {
107107
loader: 'file-loader',
108108
options: {
109109
name: '[hash]-[name].[ext]',
110-
outputPath: 'static',
111-
publicPath: 'static',
110+
outputPath: 'fonts',
111+
publicPath: 'fonts',
112112
},
113113
},
114114
],
@@ -122,8 +122,8 @@ export default merge(commonConfig, {
122122
loader: 'file-loader',
123123
options: {
124124
name: '[hash]-[name].[ext]',
125-
outputPath: 'static',
126-
publicPath: 'static',
125+
outputPath: 'fonts',
126+
publicPath: 'fonts',
127127
},
128128
},
129129
],
@@ -141,8 +141,8 @@ export default merge(commonConfig, {
141141
loader: 'file-loader',
142142
options: {
143143
name: '[hash]-[name].[ext]',
144-
outputPath: 'static',
145-
publicPath: 'static',
144+
outputPath: 'fonts',
145+
publicPath: 'fonts',
146146
},
147147
},
148148
],

configs/webpack.config.web.prod.babel.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -130,8 +130,8 @@ export default merge(commonConfig, {
130130
loader: 'file-loader',
131131
options: {
132132
name: '[hash]-[name].[ext]',
133-
outputPath: 'static',
134-
publicPath: 'static',
133+
outputPath: 'fonts',
134+
publicPath: 'fonts',
135135
},
136136
},
137137
],
@@ -145,8 +145,8 @@ export default merge(commonConfig, {
145145
loader: 'file-loader',
146146
options: {
147147
name: '[hash]-[name].[ext]',
148-
outputPath: 'static',
149-
publicPath: 'static',
148+
outputPath: 'fonts',
149+
publicPath: 'fonts',
150150
},
151151
},
152152
],
@@ -164,8 +164,8 @@ export default merge(commonConfig, {
164164
loader: 'file-loader',
165165
options: {
166166
name: '[hash]-[name].[ext]',
167-
outputPath: 'static',
168-
publicPath: 'static',
167+
outputPath: 'fonts',
168+
publicPath: 'fonts',
169169
},
170170
},
171171
],

0 commit comments

Comments
 (0)