diff options
Diffstat (limited to 'config/webpack')
-rw-r--r-- | config/webpack/loaders/mark.js | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/config/webpack/loaders/mark.js b/config/webpack/loaders/mark.js new file mode 100644 index 000000000..e62a526b0 --- /dev/null +++ b/config/webpack/loaders/mark.js @@ -0,0 +1,8 @@ +if (process.env.NODE_ENV === 'production') { + module.exports = {}; +} else { + module.exports = { + test: /\.js$/, + loader: 'mark-loader', + }; +} |