diff --git a/landing/layouts/header.vue b/landing/layouts/header.vue index 760119b..b48d8aa 100644 --- a/landing/layouts/header.vue +++ b/landing/layouts/header.vue @@ -51,7 +51,7 @@ onMounted(() => { Blog + class="poppins hover:text-text-sub/90 whitespace-nowrap"> Live demo @@ -85,9 +85,9 @@ onMounted(() => {
- +
diff --git a/landing/nuxt.config.ts b/landing/nuxt.config.ts deleted file mode 100644 index 1c74741..0000000 --- a/landing/nuxt.config.ts +++ /dev/null @@ -1,34 +0,0 @@ -// https://nuxt.com/docs/api/configuration/nuxt-config - -export default defineNuxtConfig({ - colorMode: { preference: 'dark', }, - devtools: { enabled: false }, - app: { - head: { - script: [ - { - src: 'https://cdn.jsdelivr.net/gh/litlyx/litlyx-js/browser/litlyx.js', - 'data-project': '6643cd08a1854e3b81722ab5', - defer: true - } - ] - } - }, - pages: true, - ssr: true, - routeRules: { - '/': { - prerender: true - }, - '/**': { - prerender: true - }, - }, - css: ['~/assets/scss/main.scss'], - modules: ['@nuxt/ui'], - devServer: { - host: '0.0.0.0', - }, - components: true, - extends: ['../lyx-ui'] -})