mirror of
https://github.com/MarcZierle/photo-log-frontend.git
synced 2025-04-04 11:44:37 +00:00
configure vite
This commit is contained in:
parent
7b35fe6583
commit
7b2d9a7d6c
Binary file not shown.
Before Width: | Height: | Size: 2.2 MiB |
BIN
src/assets/images/home_bg.webp
Normal file
BIN
src/assets/images/home_bg.webp
Normal file
Binary file not shown.
After Width: | Height: | Size: 581 KiB |
@ -5,14 +5,14 @@ import {
|
||||
} from '@/i18n.js'
|
||||
|
||||
import { createRouter, createWebHistory } from 'vue-router'
|
||||
import HomeView from '../views/Home.vue'
|
||||
import LogsList from '../views/LogsList.vue'
|
||||
import LogTemplatesList from '../views/LogTemplatesList.vue'
|
||||
import CreateLog from '../views/CreateLog.vue'
|
||||
import CreateLogTemplate from '../views/CreateLogTemplate.vue'
|
||||
import CameraCapture from '../views/CameraCapture.vue'
|
||||
import ManagePhotos from '../views/ManagePhotos.vue'
|
||||
import DevView from '../views/DevView.vue'
|
||||
const HomeView = () => import('../views/Home.vue')
|
||||
const LogsList = () => import('../views/LogsList.vue')
|
||||
const LogTemplatesList = () => import('../views/LogTemplatesList.vue')
|
||||
const CreateLog = () => import('../views/CreateLog.vue')
|
||||
const CreateLogTemplate = () => import('../views/CreateLogTemplate.vue')
|
||||
const CameraCapture = () => import('../views/CameraCapture.vue')
|
||||
const ManagePhotos = () => import('../views/ManagePhotos.vue')
|
||||
const DevView = () => import('../views/DevView.vue')
|
||||
|
||||
const routes = [
|
||||
{
|
||||
|
@ -84,7 +84,7 @@ export default {
|
||||
}
|
||||
|
||||
.banner-bg {
|
||||
background-image: url('../assets/images/home_bg.jpg');
|
||||
background-image: url('../assets/images/home_bg.webp');
|
||||
background-size: cover;
|
||||
background-position: center;
|
||||
width: 100%;
|
||||
|
@ -13,4 +13,8 @@ export default defineConfig({
|
||||
host: true,
|
||||
port: 8080,
|
||||
},
|
||||
preview: {
|
||||
host: true,
|
||||
port: 8080,
|
||||
},
|
||||
})
|
||||
|
Loading…
Reference in New Issue
Block a user