Skip to content

Commit d6f9d55

Browse files
mohan-13N0-man
authored andcommitted
BAH-2162 | Fix. Path error for fonts folder in webpack configs
1 parent c8f91fc commit d6f9d55

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

webpack.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ module.exports = {
3939
new ExtractTextPlugin('styles.css', { allChunks: true }),
4040
new CopyWebpackPlugin([
4141
{
42-
from: path.join(__dirname, 'styles/fonts'), to: path.join(__dirname, '../dist/fonts'),
42+
from: path.join(__dirname, 'styles/fonts'), to: path.join(__dirname, 'dist/fonts'),
4343
},
4444
], { copyUnmodified: true }
4545
),

webpack.test.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ module.exports = {
3636
new ExtractTextPlugin('styles.css', { allChunks: true }),
3737
new CopyWebpackPlugin([
3838
{
39-
from: path.join(__dirname, 'styles/fonts'), to: path.join(__dirname, '../dist/fonts'),
39+
from: path.join(__dirname, 'styles/fonts'), to: path.join(__dirname, 'dist/fonts'),
4040
},
4141
], { copyUnmodified: true }
4242
),

0 commit comments

Comments
 (0)