From 128780d961f206a00698b515191edb5d91e64400 Mon Sep 17 00:00:00 2001 From: Toby Zerner Date: Sat, 16 Jun 2018 22:39:31 +0930 Subject: [PATCH] Fix compat reference --- js-packages/webpack-config/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js-packages/webpack-config/index.js b/js-packages/webpack-config/index.js index 7688699c5..8906a5f3a 100644 --- a/js-packages/webpack-config/index.js +++ b/js-packages/webpack-config/index.js @@ -73,7 +73,7 @@ module.exports = function(options = {}) { function(context, request, callback) { let matches; if ((matches = /^flarum\/(.+)$/.exec(request))) { - return callback(null, 'root flarum.compat[\'' + matches[1] + '\']'); + return callback(null, 'root flarum.core.compat[\'' + matches[1] + '\']'); } callback(); }