Skip to content

Commit

Permalink
feat(playground): add /providers/adobe
Browse files Browse the repository at this point in the history
  • Loading branch information
qwerzl committed Mar 11, 2024
1 parent ae5cd36 commit 2cde46d
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
1 change: 1 addition & 0 deletions playground/nuxt.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ export default defineNuxtConfig({
{ name: 'MyCustom', src: '/custom-font.woff2' },
{ name: 'CustomGlobal', global: true, src: '/font-global.woff2' },
{ name: 'Oswald', fallbacks: ['Times New Roman'] },
{ name: 'Aleo', provider: 'adobe'}
],
adobe: {
id: "sij5ufr",
Expand Down
11 changes: 11 additions & 0 deletions playground/pages/providers/adobe.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<template>
<div>
Nuxt module playground!
</div>
</template>

<style scoped>
div {
font-family: 'Aleo', sans-serif;
}
</style>

0 comments on commit 2cde46d

Please sign in to comment.