|
@@ -22,10 +22,10 @@ var definePlugin = new webpack.DefinePlugin({
|
|
|
|
|
|
var outpath = './webpack/';
|
|
|
|
|
|
-if (process.env.CORDOVA === true) {
|
|
|
+if (process.env.CORDOVA === "true") {
|
|
|
outpath = './www/';
|
|
|
console.log('CORDOVA environment : output in ',outpath);
|
|
|
-} else if (process.env.WEB === true) {
|
|
|
+} else if (process.env.WEB === "true") {
|
|
|
outpath = './www_web/';
|
|
|
console.log('WEB environment : output in ',outpath);
|
|
|
} else {
|