updated paths in project
This commit is contained in:
parent
f4dc87d841
commit
377f0dd743
@ -1,16 +1,16 @@
|
|||||||
<template>
|
<template>
|
||||||
|
<SiteHeader />
|
||||||
<main
|
<main
|
||||||
rel="main"
|
rel="main"
|
||||||
>
|
>
|
||||||
<SiteHeader />
|
|
||||||
<RouterView />
|
<RouterView />
|
||||||
<FooterComponent />
|
|
||||||
</main>
|
</main>
|
||||||
|
<FooterComponent />
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup>
|
<script setup>
|
||||||
import SiteHeader from './components/SiteHeader'
|
import SiteHeader from '@/components/SiteHeader'
|
||||||
import FooterComponent from './components/FooterComponent'
|
import FooterComponent from '@/components/FooterComponent'
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss">
|
<style lang="scss">
|
||||||
|
@ -59,7 +59,7 @@
|
|||||||
import { defineProps, onMounted } from 'vue'
|
import { defineProps, onMounted } from 'vue'
|
||||||
import { useRoute, useRouter } from 'vue-router'
|
import { useRoute, useRouter } from 'vue-router'
|
||||||
import { useStore } from 'vuex'
|
import { useStore } from 'vuex'
|
||||||
import BaseButton from './buttons/BaseButton'
|
import BaseButton from '@/components/buttons/BaseButton'
|
||||||
import { marked } from 'marked'
|
import { marked } from 'marked'
|
||||||
|
|
||||||
defineProps({
|
defineProps({
|
||||||
@ -92,7 +92,7 @@ function markdownToText (project) {
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
@import "scss/media";
|
@import 'scss/media';
|
||||||
|
|
||||||
.grid-project {
|
.grid-project {
|
||||||
animation: load-project 2s forwards;
|
animation: load-project 2s forwards;
|
||||||
|
@ -27,7 +27,7 @@
|
|||||||
import { computed } from 'vue'
|
import { computed } from 'vue'
|
||||||
import { useStore } from 'vuex'
|
import { useStore } from 'vuex'
|
||||||
import { useRoute } from 'vue-router'
|
import { useRoute } from 'vue-router'
|
||||||
import Navigation from './NavigationHeader'
|
import Navigation from '@/components/NavigationHeader'
|
||||||
|
|
||||||
const store = useStore()
|
const store = useStore()
|
||||||
const route = useRoute()
|
const route = useRoute()
|
||||||
|
@ -33,7 +33,7 @@ defineProps({
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss">
|
<style lang="scss">
|
||||||
@import "../../../scss/btn";
|
@import 'scss/btn';
|
||||||
|
|
||||||
.btn {
|
.btn {
|
||||||
@include button($has-icon: true);
|
@include button($has-icon: true);
|
||||||
|
@ -25,7 +25,7 @@ defineProps({
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
@import "../../../scss/btn";
|
@import 'scss/btn';
|
||||||
|
|
||||||
.btn {
|
.btn {
|
||||||
@include ghost-button();
|
@include ghost-button();
|
||||||
|
@ -49,7 +49,7 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup>
|
<script setup>
|
||||||
import BaseButton from '../buttons/BaseButton'
|
import BaseButton from '@/components/buttons/BaseButton'
|
||||||
import { useRouter } from 'vue-router'
|
import { useRouter } from 'vue-router'
|
||||||
|
|
||||||
const router = useRouter()
|
const router = useRouter()
|
||||||
|
@ -24,8 +24,8 @@
|
|||||||
<script setup>
|
<script setup>
|
||||||
import { ref, onMounted } from 'vue'
|
import { ref, onMounted } from 'vue'
|
||||||
import { useRouter } from 'vue-router'
|
import { useRouter } from 'vue-router'
|
||||||
import Projects from '../SelectedProjects'
|
import Projects from '@/components/SelectedProjects'
|
||||||
import GhostButton from '../buttons/GhostButton'
|
import GhostButton from '@/components/buttons/GhostButton'
|
||||||
|
|
||||||
const router = useRouter()
|
const router = useRouter()
|
||||||
|
|
||||||
|
@ -103,7 +103,7 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup>
|
<script setup>
|
||||||
import BaseButton from '../../buttons/BaseButton'
|
import BaseButton from '@/components/buttons/BaseButton'
|
||||||
import { ref, reactive, watch, computed } from 'vue'
|
import { ref, reactive, watch, computed } from 'vue'
|
||||||
|
|
||||||
function emailValidate (mailObj) {
|
function emailValidate (mailObj) {
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
import { createApp } from 'vue'
|
import { createApp } from 'vue'
|
||||||
import App from './App.vue'
|
import App from '@/App.vue'
|
||||||
import router from './router'
|
import router from '@/router'
|
||||||
import { store } from './store'
|
import { store } from '@/store'
|
||||||
// import VueMeta from 'vue-meta'
|
// import VueMeta from 'vue-meta'
|
||||||
|
|
||||||
import '../scss/default.scss'
|
import '../scss/default.scss'
|
||||||
|
@ -1,10 +1,10 @@
|
|||||||
import { createRouter, createWebHistory } from 'vue-router'
|
import { createRouter, createWebHistory } from 'vue-router'
|
||||||
import Home from '../views/HomeView'
|
import Home from '@/views/HomeView'
|
||||||
import About from '../views/AboutView'
|
import About from '@/views/AboutView'
|
||||||
import Projects from '../views/ProjectsView'
|
import Projects from '@/views/ProjectsView'
|
||||||
import Project from '../views/ProjectView'
|
import Project from '@/views/ProjectView'
|
||||||
import Contact from '../views/ContactView'
|
import Contact from '@/views/ContactView'
|
||||||
import NotFound from '../views/NotFound'
|
import NotFound from '@/views/NotFound'
|
||||||
|
|
||||||
const mainTitle = 'kamilcraft.com'
|
const mainTitle = 'kamilcraft.com'
|
||||||
|
|
||||||
|
@ -9,8 +9,8 @@
|
|||||||
import { onMounted } from 'vue'
|
import { onMounted } from 'vue'
|
||||||
import { useRoute } from 'vue-router'
|
import { useRoute } from 'vue-router'
|
||||||
import { useStore } from 'vuex'
|
import { useStore } from 'vuex'
|
||||||
import MailContact from '../components/sections/contacts/MailContact'
|
import MailContact from '@/components/sections/contacts/MailContact'
|
||||||
import OtherContact from '../components/sections/contacts/OtherContact'
|
import OtherContact from '@/components/sections/contacts/OtherContact'
|
||||||
|
|
||||||
const route = useRoute()
|
const route = useRoute()
|
||||||
const store = useStore()
|
const store = useStore()
|
||||||
|
@ -10,9 +10,9 @@
|
|||||||
import { onMounted, onUnmounted } from 'vue'
|
import { onMounted, onUnmounted } from 'vue'
|
||||||
import { useStore } from 'vuex'
|
import { useStore } from 'vuex'
|
||||||
import { useRoute } from 'vue-router'
|
import { useRoute } from 'vue-router'
|
||||||
import About from '../components/sections/AboutSection'
|
import About from '@/components/sections/AboutSection'
|
||||||
import ExperiencesSection from '../components/sections/ExperiencesSection'
|
import ExperiencesSection from '@/components/sections/ExperiencesSection'
|
||||||
import FavoriteProjects from '../components/sections/FavoriteProjects'
|
import FavoriteProjects from '@/components/sections/FavoriteProjects'
|
||||||
|
|
||||||
const store = useStore()
|
const store = useStore()
|
||||||
const route = useRoute()
|
const route = useRoute()
|
||||||
|
@ -28,7 +28,7 @@
|
|||||||
<script setup>
|
<script setup>
|
||||||
import { ref, reactive, computed, onMounted, onUnmounted } from 'vue'
|
import { ref, reactive, computed, onMounted, onUnmounted } from 'vue'
|
||||||
import { useStore } from 'vuex'
|
import { useStore } from 'vuex'
|
||||||
import SelectedProjects from '../components/SelectedProjects'
|
import SelectedProjects from '@/components/SelectedProjects'
|
||||||
|
|
||||||
const store = useStore()
|
const store = useStore()
|
||||||
|
|
||||||
|
@ -1,6 +1,14 @@
|
|||||||
|
const path = require("path")
|
||||||
const { defineConfig } = require('@vue/cli-service')
|
const { defineConfig } = require('@vue/cli-service')
|
||||||
|
|
||||||
module.exports = defineConfig({
|
module.exports = defineConfig({
|
||||||
publicPath: '/',
|
publicPath: '/',
|
||||||
transpileDependencies: true
|
transpileDependencies: true,
|
||||||
|
configureWebpack: {
|
||||||
|
resolve: {
|
||||||
|
alias: {
|
||||||
|
'@': path.resolve(__dirname, 'src/'),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
})
|
})
|
||||||
|
Loading…
x
Reference in New Issue
Block a user