mirror of
https://github.com/RocketChat/Rocket.Chat.git
synced 2025-12-28 06:47:25 +00:00
8 lines
232 B
JavaScript
8 lines
232 B
JavaScript
/* eslint-disable import/no-unresolved */
|
|
|
|
if (process.env.NODE_ENV === 'production') {
|
|
module.exports = require('./dist/messageParser.production.js');
|
|
} else {
|
|
module.exports = require('./dist/messageParser.development.js');
|
|
}
|