Skip to content

Commit

Permalink
asdf
Browse files Browse the repository at this point in the history
  • Loading branch information
ethanfox committed Jul 14, 2024
1 parent 04edee1 commit f770d2d
Show file tree
Hide file tree
Showing 8 changed files with 27 additions and 9 deletions.

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

Large diffs are not rendered by default.

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
<link rel="stylesheet" href="https://use.typekit.net/kuf3cvh.css" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite App</title>
<script type="module" crossorigin src="/art-institute-chicago/assets/index-zrJ3cnT1.js"></script>
<link rel="stylesheet" crossorigin href="/art-institute-chicago/assets/index-DdrwYLVz.css">
<script type="module" crossorigin src="/art-institute-chicago/assets/index-MiYexifR.js"></script>
<link rel="stylesheet" crossorigin href="/art-institute-chicago/assets/index-CmVMpKNl.css">
</head>
<body>
<div id="app"></div>
Expand Down
4 changes: 2 additions & 2 deletions src/App.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<script setup lang="ts">
import { RouterLink, RouterView } from "vue-router";
import Navbar from "@/components/Navbar.vue";
import TheWelcome from "./components/TheWelcome.vue";
import Navbar from "./components/Navbar.vue";
</script>

<template>
Expand Down
1 change: 1 addition & 0 deletions tsconfig.node.tsbuildinfo

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions vite.config.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
declare const _default: import("vite").UserConfig;
export default _default;
15 changes: 15 additions & 0 deletions vite.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import { fileURLToPath, URL } from "node:url";
import { defineConfig } from "vite";
import vue from "@vitejs/plugin-vue";
import vueJsx from "@vitejs/plugin-vue-jsx";
import vueDevTools from "vite-plugin-vue-devtools";
//https://vitejs.dev/config/
export default defineConfig({
base: "/art-institute-chicago/",
plugins: [vue(), vueJsx(), vueDevTools()],
resolve: {
alias: {
"@": fileURLToPath(new URL("./src", import.meta.url)),
},
},
});

0 comments on commit f770d2d

Please sign in to comment.