Commit 923ebf80 authored by NGPixel's avatar NGPixel

Fix core path for production environments

parent 2227515b
......@@ -10,7 +10,7 @@ global.IS_DEBUG = process.env.NODE_ENV === 'development';
if(IS_DEBUG) {
global.CORE_PATH = ROOTPATH + '/../core/';
} else {
global.CORE_PATH = ROOTPATH + './node_modules/requarks-core/';
global.CORE_PATH = ROOTPATH + '/node_modules/requarks-core/';
}
// ----------------------------------------
......
......@@ -11,7 +11,7 @@ global.IS_DEBUG = process.env.NODE_ENV === 'development';
if(IS_DEBUG) {
global.CORE_PATH = ROOTPATH + '/../core/';
} else {
global.CORE_PATH = ROOTPATH + './node_modules/requarks-core/';
global.CORE_PATH = ROOTPATH + '/node_modules/requarks-core/';
}
// ----------------------------------------
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment