From 0431e150b2df53d2de7c43ef51eecc6f61eb3881 Mon Sep 17 00:00:00 2001 From: HampusM Date: Sun, 25 Jul 2021 15:04:58 +0200 Subject: Replaced requires with imports in the client vue config --- packages/client/vue.config.js | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'packages/client') diff --git a/packages/client/vue.config.js b/packages/client/vue.config.js index f35b739..d902c72 100644 --- a/packages/client/vue.config.js +++ b/packages/client/vue.config.js @@ -1,7 +1,8 @@ -const yaml = require("js-yaml"); -const fs = require("fs"); +import yaml from "js-yaml"; +import { readFileSync } from "fs"; +import { join } from "path"; -const settings = yaml.load(fs.readFileSync(`${__dirname}/../../settings.yml`, "utf8")); +const settings = yaml.load(readFileSync(join(__dirname, "../../settings.yml"), "utf8")); module.exports = { devServer: { @@ -30,4 +31,4 @@ module.exports = { return args; }); } -}; +}; \ No newline at end of file -- cgit v1.2.3-18-g5258