diff --git a/client/.eslintrc.js b/client/.eslintrc.js index 09d312a..121ee39 100644 --- a/client/.eslintrc.js +++ b/client/.eslintrc.js @@ -14,7 +14,7 @@ module.exports = { ecmaVersion: 2020 }, rules: { - "no-console": process.env.NODE_ENV === "production" ? "error" : "off", + "no-console": process.env.NODE_ENV === "production" ? "warn" : "off", "no-debugger": process.env.NODE_ENV === "production" ? "error" : "off", "@typescript-eslint/ban-ts-ignore": "off" } diff --git a/client/.gitignore b/client/.gitignore index 39ff9df..88a9600 100644 --- a/client/.gitignore +++ b/client/.gitignore @@ -1,5 +1,7 @@ .DS_Store node_modules +.yarn +./mustard /dist # local env files diff --git a/client/package.json b/client/package.json index cb0d893..4ccef5a 100644 --- a/client/package.json +++ b/client/package.json @@ -14,6 +14,7 @@ "vue": "^2.6.11", "vue-apexcharts": "~1.5.2", "vue-class-component": "^7.2.2", + "vue-grid-layout": "^2.4.0", "vue-property-decorator": "^8.3.0", "vue-sse": "~1.0.2", "vuex": "~3.1.3" diff --git a/client/src/App.vue b/client/src/App.vue index 0a116e1..58ce97d 100644 --- a/client/src/App.vue +++ b/client/src/App.vue @@ -1,5 +1,9 @@