-
Notifications
You must be signed in to change notification settings - Fork 203
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
Stuck forever [UPDATE:] Google signin disabled for app #415
Comments
You can use a JWT. Find docs here. |
@mgechev Okay.. that worked, Thanks. extend(config, ctx) {
if (ctx.isDev) {
config.devtool = ctx.isClient ? 'source-map' : 'inline-source-map'
}
if (ctx.isClient && process.env.NODE_ENV == 'production') {
let guessOptions = {}
var GA = '212378167'
guessOptions.debug = true
guessOptions.jwt = credentials
guessOptions.period = {
startDate: new Date('2016-1-2'),
endDate: new Date(),
}
if (GA) {
guessOptions.GA = GA
} else {
guessOptions.reportProvider = () => {
return Promise.resolve(JSON.parse(readFileSync('./routes.json')))
}
}
config.plugins.push(new GuessPlugin(guessOptions))
}
},
If I add guessParser, it throws unknown project type. guess/packages/common/interfaces.ts Line 33 in 27d56d9
I believe there is no ProjectType for vue or nuxt, on |
@daliborgogic should be able to help for Nuxt. |
Hi @daliborgogic, |
Nuxt: v2.13.1
Guess webpack: 0.4.19
The text was updated successfully, but these errors were encountered: