Target removed. Intro moved to landing
parent
384e9e93ac
commit
5ce92f674e
|
@ -7,7 +7,6 @@ const baseUrl = process.env.NODE_ENV === 'production' ? '/primevue-nuxt/' : '/';
|
|||
export default defineNuxtConfig({
|
||||
typescript: false,
|
||||
components: true,
|
||||
target: 'static',
|
||||
app: {
|
||||
baseURL: baseUrl,
|
||||
head: {
|
||||
|
|
|
@ -13,7 +13,6 @@
|
|||
</template>
|
||||
|
||||
<script>
|
||||
import { defineAsyncComponent } from 'vue';
|
||||
import BlockSection from './landing/BlockSection';
|
||||
import ComponentSection from './landing/ComponentSection';
|
||||
import DesignerSection from './landing/DesignerSection';
|
||||
|
@ -22,6 +21,8 @@ import FooterSection from './landing/FooterSection';
|
|||
import TemplateSection from './landing/TemplateSection';
|
||||
import ThemeSection from './landing/ThemeSection';
|
||||
import UsersSection from './landing/UsersSection';
|
||||
const Intro = defineAsyncComponent(() => import('./landing/Intro.vue'));
|
||||
|
||||
export default {
|
||||
props: {
|
||||
theme: {
|
||||
|
@ -81,7 +82,7 @@ export default {
|
|||
}
|
||||
},
|
||||
components: {
|
||||
Intro: defineAsyncComponent(() => import('./Intro.vue')),
|
||||
Intro,
|
||||
ComponentSection,
|
||||
ThemeSection,
|
||||
BlockSection,
|
||||
|
|
|
@ -8,8 +8,8 @@
|
|||
|
||||
<script>
|
||||
import AppNews from '@/layouts/AppNews';
|
||||
import HeaderSection from './landing/HeaderSection';
|
||||
import HeroSection from './landing/HeroSection';
|
||||
import HeaderSection from './HeaderSection';
|
||||
import HeroSection from './HeroSection';
|
||||
export default {
|
||||
methods: {
|
||||
onThemeToggle() {
|
Loading…
Reference in New Issue