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')