Changes vite dist asset paths to relative

This commit is contained in:
psychedelicious 2022-10-20 20:17:34 +08:00
parent 899ba975a6
commit e035397dcf
5 changed files with 6 additions and 5 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -5,9 +5,9 @@
<meta charset="UTF-8" /> <meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>InvokeAI - A Stable Diffusion Toolkit</title> <title>InvokeAI - A Stable Diffusion Toolkit</title>
<link rel="shortcut icon" type="icon" href="/assets/favicon.0d253ced.ico" /> <link rel="shortcut icon" type="icon" href="./assets/favicon.0d253ced.ico" />
<script type="module" crossorigin src="/assets/index.b5f97cf7.js"></script> <script type="module" crossorigin src="./assets/index.00c5d275.js"></script>
<link rel="stylesheet" href="/assets/index.58175ea1.css"> <link rel="stylesheet" href="./assets/index.556a5ea7.css">
</head> </head>
<body> <body>

View File

@ -5,6 +5,7 @@ import eslint from 'vite-plugin-eslint';
// https://vitejs.dev/config/ // https://vitejs.dev/config/
export default defineConfig(({ mode }) => { export default defineConfig(({ mode }) => {
const common = { const common = {
base: '',
plugins: [react(), eslint()], plugins: [react(), eslint()],
server: { server: {
// Proxy HTTP requests to the flask server // Proxy HTTP requests to the flask server