Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion client/nt.webclient/vue3withtypescript/nt/.env
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
VITE_APP_API_URL=http://localhost:8001/
VITE_APP_API_URL=http://localhost:8001/
VITE_APP_GRAPHQL_URL=http://localhost:8001/movies
4 changes: 3 additions & 1 deletion client/nt.webclient/vue3withtypescript/nt/.env.development
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
VITE_APP_API_URL=http://localhost:8001/
VITE_APP_API_URL=http://localhost:8001/
VITE_APP_GRAPHQL_URL=http://localhost:8001/movies
VITE_APP_MODE=DEVELOPMENT
3 changes: 3 additions & 0 deletions client/nt.webclient/vue3withtypescript/nt/.env.mockoon
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
VITE_APP_API_URL=http://localhost:3001/
VITE_APP_GRAPHQL_URL=http://localhost:3001/movies
VITE_APP_MODE=MOCK
17 changes: 10 additions & 7 deletions client/nt.webclient/vue3withtypescript/nt/.eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,19 +1,22 @@
module.exports = {
root: true,
env: {
node: true
node: true,
},
'extends': [
extends: [
'plugin:vue/vue3-essential',
'eslint:recommended',
'@vue/typescript/recommended'
'@vue/typescript/recommended',
'plugin:prettier/recommended',
],

parserOptions: {
ecmaVersion: 2020
ecmaVersion: 'latest',
sourceType: 'module',
},
rules: {
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off'
}
}
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
'vue/multi-word-component-names': 'off', // Optional, helps avoid naming warnings
},
};
Loading