Replace Vite and Vue Router with Nuxt framework Update Docker, build scripts, and env vars for Nuxt generate
13 lines
350 B
Vue
13 lines
350 B
Vue
<script setup lang="ts">
|
|
import ComingSoonView from '../src/views/ComingSoonView.vue';
|
|
|
|
definePageMeta({
|
|
name: 'automation',
|
|
seo: { titleKey: 'pages.comingSoon.sections.automation.title', descriptionKey: 'pages.comingSoon.sections.automation.subtitle', noindex: true }
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<ComingSoonView page="automation" />
|
|
</template>
|