Поправки багов

This commit is contained in:
Book Pauk
2018-12-27 22:22:54 +07:00
parent 18ceb865d4
commit 9f80d7ef9b
2 changed files with 2 additions and 2 deletions

View File

@@ -3,7 +3,7 @@ const webpack = require("webpack");
const VueLoaderPlugin = require('vue-loader/lib/plugin');
module.exports = {
entry: ["./client/main.js"],
entry: [path.resolve(__dirname, "../client/main.js")],
output: {
path: path.resolve(__dirname, "..", "server", "public"),
publicPath: "/",

View File

@@ -11,7 +11,7 @@
"build:win": "npm run build:client && pkg -t latest-win-x64 -o dist/win/liberama .",
"lint": "eslint --ext=.js,.vue client server"
},
"bin": "server/index-prod.js",
"bin": "server/index.js",
"pkg": {
"scripts": "server/config/*.js"
},