From 33412dd4c6a11a3fc386ab1a95fbe28adeab93b5 Mon Sep 17 00:00:00 2001 From: Tommy Mikkelsen Date: Sun, 1 Jan 2023 22:25:12 +0100 Subject: [PATCH] #493 fix --- DEVELOPER.md | 13 +++++++++++++ package.json | 5 ++++- vue.config.js | 2 +- 3 files changed, 18 insertions(+), 2 deletions(-) diff --git a/DEVELOPER.md b/DEVELOPER.md index 86691b0..45d6be2 100644 --- a/DEVELOPER.md +++ b/DEVELOPER.md @@ -1,5 +1,18 @@ # webtools-ng +Requerement: + * Install Visual Studio Code ( https://code.visualstudio.com/download ) + * Install Volta ( https://volta.sh) + * If Windows, then enable Developer mode first( https://learn.microsoft.com/en-us/windows/apps/get-started/enable-your-device-for-development#accessing-settings-for-developers ) + * Install latest version of node.js + * Make sure to create the .env.local ( See /docs/devs/Dev Secrets.md ) + +General recommendation: + * Enable SSH Keys for Github ( https://docs.github.com/en/authentication/connecting-to-github-with-ssh ) + +If Windows Recommended: + * Install Git Bash ( https://gitforwindows.org/ ) + ## Project setup ```md diff --git a/package.json b/package.json index dfc6e12..351753e 100644 --- a/package.json +++ b/package.json @@ -99,5 +99,8 @@ "> 1%", "last 2 versions", "not dead" - ] + ], + "volta": { + "node": "16.13.2" + } } diff --git a/vue.config.js b/vue.config.js index 35fed37..86ffe47 100644 --- a/vue.config.js +++ b/vue.config.js @@ -48,7 +48,7 @@ module.exports = { } } -chainWebpack: config => { +config => { config.module .rule('vue') .use('vue-loader')