Skip to content

Commit

Permalink
added SMS number to vcard
Browse files Browse the repository at this point in the history
  • Loading branch information
vishnuraghavb committed Dec 12, 2021
1 parent e6dc08d commit de63194
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions components/Vcard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ TITLE:{{ vCard.TITLE }}
TEL;TYPE=CELL:{{ vCard.CELL }}
TEL;TYPE=WORK:{{ vCard.WORK }}
TEL;TYPE=HOME:{{ vCard.HOME }}
TEL;TYPE=MSG:{{ vCard.SMS }}
EMAIL;TYPE=WORK:{{ vCard.EMAIL }}
URL:{{ vCard.URL }}
KEY;TYPE=PGP;ENCODING=b:{{ vCard.KEY }}
Expand Down
2 changes: 1 addition & 1 deletion nuxt.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ export default {
: 'img/[contenthash:7]-[width].[ext]',
handleImages: ['jpeg', 'png', 'svg', 'webp', 'gif'],
optimizeImages: true,
optimizeImagesInDev: true,
optimizeImagesInDev: false,
defaultImageLoader: 'img-loader',
optipng: {
optimizationLevel: 7,
Expand Down
1 change: 1 addition & 0 deletions pages/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -1179,6 +1179,7 @@ export default {
CELL: getNumber('Mobile'),
WORK: getNumber('Office'),
HOME: getNumber('Home'),
SMS: getNumber('SMS'),
EMAIL: email,
URL: website,
KEY: key,
Expand Down

0 comments on commit de63194

Please sign in to comment.