Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: eslint path error in workspace #481

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
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
2 changes: 1 addition & 1 deletion generator/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ module.exports = (api, options, rootOptions) => {
'graphql/template-strings': ['error', {
env: 'literal',
projectName: 'app',
schemaJsonFilepath: 'node_modules/.temp/graphql/schema.json',
schemaJsonFilepath: `${__dirname}/node_modules/.temp/graphql/schema.json`,
}],
},
},
Expand Down
3 changes: 2 additions & 1 deletion generator/templates/vue-apollo/default/src/vue-apollo.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ Vue.use(VueApollo)

// Name of the localStorage item
const AUTH_TOKEN = 'apollo-token'
const GRAPHQL_WS = process.env.VUE_APP_GRAPHQL_WS

// Http endpoint
const httpEndpoint = process.env.VUE_APP_GRAPHQL_HTTP || 'http://localhost:4000/graphql'
Expand All @@ -22,7 +23,7 @@ const defaultOptions = {
httpEndpoint,
// You can use `wss` for secure connection (recommended in production)
// Use `null` to disable subscriptions
wsEndpoint: process.env.VUE_APP_GRAPHQL_WS || 'ws://localhost:4000/graphql',
wsEndpoint: GRAPHQL_WS === 'null' ? null : GRAPHQL_WS || 'ws://localhost:4000/graphql',
// LocalStorage token
tokenName: AUTH_TOKEN,
// Enable Automatic Query persisting with Apollo Engine
Expand Down