Added NodeJS to techs

This commit is contained in:
Douglas Barone 2021-10-26 09:05:32 -04:00
parent 6bd7492f74
commit 5c48fb2a7d
6 changed files with 12 additions and 3 deletions

View File

@ -1,2 +1,2 @@
VUE_APP_GRAPHQL_HTTP="http://192.168.0.14:4000/graphql"
VUE_APP_GRAPHQL_WS="ws://192.168.0.14:4000/graphql"
VUE_APP_GRAPHQL_HTTP="http://10.7.1.1:4000/graphql"
VUE_APP_GRAPHQL_WS="ws://10.7.1.1:4000/graphql"

View File

@ -1,3 +1,4 @@
{
"include": ["./src/**/*"]
"include": ["./src/**/*"],
"allowJs": true
}

BIN
web/src/assets/pa5.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 49 KiB

View File

@ -103,6 +103,11 @@ export default {
{
subtitle: 'Back-end',
techs: [
{
title: 'NodeJS',
icon: 'mdi-nodejs',
link: 'https://nodejs.org/'
},
{
title: 'GraphQL',
icon: 'mdi-graphql',

View File

@ -1,6 +1,8 @@
{
"include": ["./src/**/*.vue"],
"compilerOptions": {
"allowJs": true,
// this aligns with Vue's browser support
"target": "es5",
// this enables stricter inference for data properties on `this`

View File

@ -1,5 +1,6 @@
module.exports = {
transpileDependencies: ['vuetify'],
allowJs: true,
pluginOptions: {
apollo: {
lintGQL: false