File tree Expand file tree Collapse file tree 3 files changed +8
-4
lines changed Expand file tree Collapse file tree 3 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 1010 "dev:prepare" : " nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground" ,
1111 "release" : " npm run lint && npm run test && npm run prepack && changelogen --release && npm publish && git push --follow-tags" ,
1212 "lint" : " eslint ." ,
13+ "lint:fix" : " eslint . --fix" ,
1314 "test" : " vitest run" ,
1415 "test:watch" : " vitest watch" ,
1516 "test:types" : " vue-tsc --noEmit && cd playground && vue-tsc --noEmit"
Original file line number Diff line number Diff line change 11<template >
22 <div class =" center" >
3- <GoogleSignInButton @success =" onSuccess" @error =" onError" />
3+ <GoogleSignInButton
4+ @success =" onSuccess"
5+ @error =" onError"
6+ />
47 </div >
58</template >
69
Original file line number Diff line number Diff line change @@ -3,10 +3,10 @@ import GoogleSignIn from '..'
33
44export default defineNuxtConfig ( {
55 modules : [
6- GoogleSignIn
6+ GoogleSignIn ,
77 ] ,
8+ devtools : { enabled : true } ,
89 googleSignIn : {
9- clientId : process . env . NUXT_PUBLIC_GOOGLE_CLIENT_ID
10+ clientId : process . env . NUXT_PUBLIC_GOOGLE_CLIENT_ID ,
1011 } ,
11- devtools : { enabled : true } ,
1212} )
You can’t perform that action at this time.
0 commit comments