Skip to content

Commit

Permalink
Building for prod
Browse files Browse the repository at this point in the history
  • Loading branch information
davidroll20 committed Dec 24, 2024
1 parent fe2bcff commit 4b11af1
Show file tree
Hide file tree
Showing 11 changed files with 68 additions and 3 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ lerna-debug.log*

node_modules
.DS_Store
dist
dist-ssr
coverage
*.local
Expand Down
1 change: 1 addition & 0 deletions dist/assets/AboutView-B1z6ffxY.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions dist/assets/CalendarView-BPgOkefQ.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions dist/assets/CalendarView-CUSwUVMV.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file added dist/assets/crest-VUu5A_g-.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions dist/assets/index-CNJ1VNz0.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

49 changes: 49 additions & 0 deletions dist/assets/index-DBzMH3cf.js

Large diffs are not rendered by default.

Binary file added dist/favicon.ico
Binary file not shown.
14 changes: 14 additions & 0 deletions dist/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<!DOCTYPE html>
<html lang="">
<head>
<meta charset="UTF-8">
<link rel="icon" href="/favicon.ico">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Vite App</title>
<script type="module" crossorigin src="/assets/index-DBzMH3cf.js"></script>
<link rel="stylesheet" crossorigin href="/assets/index-CNJ1VNz0.css">
</head>
<body>
<div id="app"></div>
</body>
</html>
1 change: 0 additions & 1 deletion index.d.ts
Original file line number Diff line number Diff line change
@@ -1 +0,0 @@
declare module 'vue-unicons/dist/icons'
2 changes: 1 addition & 1 deletion src/components/EventCalendar/EventCal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ const handleDateSelect = (selectInfo: DateSelectArg) => {
eventStore.initializeNewEvent(selectInfo);
eventStore.openModalNew('Create a new event');
};
const handleEventClick = (clickInfo) => {
const handleEventClick = (clickInfo: { event: EventApi }) => {
eventStore.openModalEdit(clickInfo.event.title, clickInfo.event);
};
const handleEvents = (events: EventApi[]) => {
Expand Down

0 comments on commit 4b11af1

Please sign in to comment.