GitHub页面中未部署[已关闭]

ix0qys7i  于 2023-02-11  发布在  Git
关注(0)|答案(1)|浏览(161)

**已关闭。**此问题需要debugging details。当前不接受答案。

编辑问题以包含desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将有助于其他人回答问题。
2天前关闭。
Improve this question
我尝试在github页面中部署,但是返回错误404(见图),很奇怪,因为图标页面工作正常。我开发了wirh react和vite,这里是github中的仓库:https://github.com/andredavedovicz/movies-lib,这里是网站工作(几乎):https://andredavedovicz.github.io/movies-lib/
The printscreen of console
如果单击,错误显示= if I click in the error shows
在github页面中工作

x7yiwoj4

x7yiwoj41#

base: './'加到vite.config.js

import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'

// https://vitejs.dev/config/
export default defineConfig({
  plugins: [react()],
  base: './',
})

相关问题