Skip to content

Commit

Permalink
Merge pull request #20 from nuxtus/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
craigharman authored Nov 19, 2022
2 parents 20135fe + 44e322c commit c1896fb
Show file tree
Hide file tree
Showing 22 changed files with 4,177 additions and 3,067 deletions.
8 changes: 4 additions & 4 deletions client/components/Features.vue
Original file line number Diff line number Diff line change
Expand Up @@ -33,15 +33,15 @@
</template>

<script setup>
import { ArrowsExpandIcon, DocumentTextIcon, GlobeAltIcon, LightningBoltIcon, MailIcon, ScaleIcon } from '@heroicons/vue/outline'
import { FireIcon } from '@heroicons/vue/solid';
import { ArrowsPointingOutIcon, DocumentTextIcon, BoltIcon } from '@heroicons/vue/24/outline'
import { FireIcon } from '@heroicons/vue/24/solid';
const features = [
{
name: 'Automatic pages from collections',
description:
'Create a Collection in Directus and a page is automatically created in your Nuxt frontend.',
icon: LightningBoltIcon,
icon: BoltIcon,
},
{
name: 'Fully typed',
Expand All @@ -52,7 +52,7 @@ const features = [
{
name: 'Flexible',
description: 'Use as a pre-configured boilerplate starter or add only the bits you need to your existing project.',
icon: ArrowsExpandIcon,
icon: ArrowsPointingOutIcon,
},
{
name: 'Easy to get started',
Expand Down
24 changes: 12 additions & 12 deletions client/components/Footer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -58,18 +58,18 @@ const navigation = {
// ]),
// }),
// },
// {
// name: 'Twitter',
// href: '#',
// icon: defineComponent({
// render: () =>
// h('svg', { fill: 'currentColor', viewBox: '0 0 24 24' }, [
// h('path', {
// d: 'M8.29 20.251c7.547 0 11.675-6.253 11.675-11.675 0-.178 0-.355-.012-.53A8.348 8.348 0 0022 5.92a8.19 8.19 0 01-2.357.646 4.118 4.118 0 001.804-2.27 8.224 8.224 0 01-2.605.996 4.107 4.107 0 00-6.993 3.743 11.65 11.65 0 01-8.457-4.287 4.106 4.106 0 001.27 5.477A4.072 4.072 0 012.8 9.713v.052a4.105 4.105 0 003.292 4.022 4.095 4.095 0 01-1.853.07 4.108 4.108 0 003.834 2.85A8.233 8.233 0 012 18.407a11.616 11.616 0 006.29 1.84',
// }),
// ]),
// }),
// },
{
name: 'Twitter',
href: 'https://twitter.com/nuxtusjs',
icon: defineComponent({
render: () =>
h('svg', { fill: 'currentColor', viewBox: '0 0 24 24' }, [
h('path', {
d: 'M8.29 20.251c7.547 0 11.675-6.253 11.675-11.675 0-.178 0-.355-.012-.53A8.348 8.348 0 0022 5.92a8.19 8.19 0 01-2.357.646 4.118 4.118 0 001.804-2.27 8.224 8.224 0 01-2.605.996 4.107 4.107 0 00-6.993 3.743 11.65 11.65 0 01-8.457-4.287 4.106 4.106 0 001.27 5.477A4.072 4.072 0 012.8 9.713v.052a4.105 4.105 0 003.292 4.022 4.095 4.095 0 01-1.853.07 4.108 4.108 0 003.834 2.85A8.233 8.233 0 012 18.407a11.616 11.616 0 006.29 1.84',
}),
]),
}),
},
{
name: 'GitHub',
href: 'https://github.com/nuxtus/nuxtus',
Expand Down
29 changes: 10 additions & 19 deletions client/nuxt.config.ts
Original file line number Diff line number Diff line change
@@ -1,25 +1,12 @@
import { defineNuxtConfig } from 'nuxt'

// https://v3.nuxtjs.org/api/configuration/nuxt.config
export default defineNuxtConfig({
buildModules: [
[
"@nuxtjs/google-fonts",
{
/* module options */
},
],
"@nuxtjs/tailwindcss"
'@nuxtjs/google-fonts'
],
build: {
transpile: ['@heroicons/vue']
},
modules: ["nuxt-directus", "@nuxtus/nuxt-module"],
googleFonts: {
families: {
Inter: true,
},
},
modules: ["@nuxtjs/tailwindcss", "nuxt-directus", "@nuxtus/nuxt-module"],
tailwindcss: {
// Options
// jit: true
Expand All @@ -32,8 +19,12 @@ export default defineNuxtConfig({
nuxtus: {
authDirectus: true,
},
publicRuntimeConfig: {
directusEmail: "",
directusPassword: "",
},
runtimeConfig: {
nuxtus: {
directus: {
email: '',
password: ''
}
}
}
})
Loading

0 comments on commit c1896fb

Please sign in to comment.