Skip to content

Commit

Permalink
fix: eslint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
maybeanerd committed Sep 10, 2023
1 parent b94b0b2 commit f009949
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion layouts/default.vue
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@

<script setup lang="ts">
import { ThemeConfig } from '@bg-dev/nuxt-naiveui';
import { theme } from '#tailwind-config';
import tailwindConfig from '#tailwind-config';
const { theme } = tailwindConfig;
// TODO adjust theme
const themeConfig: ThemeConfig = {
Expand Down
2 changes: 1 addition & 1 deletion nuxt.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export default defineNuxtConfig({
prerender: {
crawlLinks: true,
routes: profiles.map(
(profile) => `/${profile.person.name.first.toLowerCase()}`
profile => `/${profile.person.name.first.toLowerCase()}`,
),
},
},
Expand Down

0 comments on commit f009949

Please sign in to comment.