Add MARKDOWN_LINK to webpack plugins

This commit is contained in:
Robbie Antenesse 2017-08-20 14:45:05 -06:00
parent 53bf992226
commit 6a1773b996
1 changed files with 4 additions and 1 deletions

View File

@ -96,7 +96,10 @@ const webpackConfig = {
new webpack.DefinePlugin({
'process.env': {
'NODE_ENV': JSON.stringify(BUILDMODE),
},
}
}),
new webpack.DefinePlugin({
'MARKDOWN_LINK': 'https://guides.github.com/features/mastering-markdown/'
}),
],