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

15
config/helpers.js Normal file
View File

@@ -0,0 +1,15 @@
"use strict";
const path = require("path");
const _root = path.resolve(__dirname, "..");
exports.root = function(args) {
args = Array.prototype.slice.call(arguments, 0);
return path.join.apply(path, [_root].concat(args));
};
exports.assetsPath = function(_path) {
return path.posix.join("static", _path);
};