diff --git a/web/.env.development b/web/.env.development index 02aae6e..49ac2c2 100755 --- a/web/.env.development +++ b/web/.env.development @@ -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" diff --git a/web/jsconfig.json b/web/jsconfig.json index b2c0e02..25c5a31 100644 --- a/web/jsconfig.json +++ b/web/jsconfig.json @@ -1,3 +1,4 @@ { - "include": ["./src/**/*"] + "include": ["./src/**/*"], + "allowJs": true } diff --git a/web/src/assets/pa5.png b/web/src/assets/pa5.png new file mode 100644 index 0000000..fb84bf0 Binary files /dev/null and b/web/src/assets/pa5.png differ diff --git a/web/src/components/AboutCard.vue b/web/src/components/AboutCard.vue index 1003461..c04d7eb 100755 --- a/web/src/components/AboutCard.vue +++ b/web/src/components/AboutCard.vue @@ -103,6 +103,11 @@ export default { { subtitle: 'Back-end', techs: [ + { + title: 'NodeJS', + icon: 'mdi-nodejs', + link: 'https://nodejs.org/' + }, { title: 'GraphQL', icon: 'mdi-graphql', diff --git a/web/tsconfig.json b/web/tsconfig.json index 185682f..c124605 100644 --- a/web/tsconfig.json +++ b/web/tsconfig.json @@ -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` diff --git a/web/vue.config.js b/web/vue.config.js index a81caed..8159fff 100755 --- a/web/vue.config.js +++ b/web/vue.config.js @@ -1,5 +1,6 @@ module.exports = { transpileDependencies: ['vuetify'], + allowJs: true, pluginOptions: { apollo: { lintGQL: false