NOT COMPILING. Init vue setup.

This commit is contained in:
2019-11-16 17:20:13 +01:00
parent b32710b4d3
commit 1e8770a226
11 changed files with 235 additions and 0 deletions

9
webpack.config.js Normal file
View File

@@ -0,0 +1,9 @@
"use strict";
const environment = (process.env.NODE_ENV || "development").trim();
if (environment === "development") {
module.exports = require("./config/webpack.config.dev");
} else {
module.exports = require("./config/webpack.config.prod");
}