diff --git a/public/favicon.ico b/public/favicon.ico deleted file mode 100644 index df36fcf..0000000 Binary files a/public/favicon.ico and /dev/null differ diff --git a/public/favicon.png b/public/favicon.png new file mode 100644 index 0000000..bc834fd Binary files /dev/null and b/public/favicon.png differ diff --git a/public/index.html b/public/index.html index 3e5a139..251b97d 100644 --- a/public/index.html +++ b/public/index.html @@ -4,7 +4,7 @@ - + <%= htmlWebpackPlugin.options.title %> @@ -12,6 +12,5 @@ We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled. Please enable it to continue.
- diff --git a/src/App.vue b/src/App.vue index a753dba..b1c7d35 100644 --- a/src/App.vue +++ b/src/App.vue @@ -1,30 +1,14 @@ diff --git a/src/assets/logo.png b/src/assets/logo.png deleted file mode 100644 index f3d2503..0000000 Binary files a/src/assets/logo.png and /dev/null differ diff --git a/src/assets/roller_profile.png b/src/assets/roller_profile.png new file mode 100755 index 0000000..2593b99 Binary files /dev/null and b/src/assets/roller_profile.png differ diff --git a/src/assets/roller_profile_circle.png b/src/assets/roller_profile_circle.png new file mode 100644 index 0000000..bc834fd Binary files /dev/null and b/src/assets/roller_profile_circle.png differ diff --git a/src/components/HelloWorld.vue b/src/components/HelloWorld.vue deleted file mode 100644 index b2c8940..0000000 --- a/src/components/HelloWorld.vue +++ /dev/null @@ -1,59 +0,0 @@ - - - - - - diff --git a/src/router/index.js b/src/router/index.js index d3a856e..36e7b57 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -1,20 +1,16 @@ import { createRouter, createWebHistory } from 'vue-router' -import HomeView from '../views/HomeView.vue' +import homeView from '../views/HomePage.vue' const routes = [ { path: '/', - name: 'home', - component: HomeView + redirect: '/home' }, { - path: '/about', - name: 'about', - // route level code-splitting - // this generates a separate chunk (about.[hash].js) for this route - // which is lazy-loaded when the route is visited. - component: () => import(/* webpackChunkName: "about" */ '../views/AboutView.vue') - } + path: '/home', + name: 'home', + component: homeView + }, ] const router = createRouter({ diff --git a/src/views/AboutView.vue b/src/views/AboutView.vue deleted file mode 100644 index 3fa2807..0000000 --- a/src/views/AboutView.vue +++ /dev/null @@ -1,5 +0,0 @@ - diff --git a/src/views/HomePage.vue b/src/views/HomePage.vue new file mode 100644 index 0000000..38dfc08 --- /dev/null +++ b/src/views/HomePage.vue @@ -0,0 +1,101 @@ + + + \ No newline at end of file diff --git a/src/views/HomeView.vue b/src/views/HomeView.vue deleted file mode 100644 index e8d96d7..0000000 --- a/src/views/HomeView.vue +++ /dev/null @@ -1,18 +0,0 @@ - - - diff --git a/vue.config.js b/vue.config.js index 910e297..860a17f 100644 --- a/vue.config.js +++ b/vue.config.js @@ -1,4 +1,16 @@ const { defineConfig } = require('@vue/cli-service') + module.exports = defineConfig({ transpileDependencies: true }) + +module.exports = { + chainWebpack: config => { + config + .plugin('html') + .tap(args => { + args[0].title = "Keyemail's Profile" + return args; + }) + } +} \ No newline at end of file