- ISS 移除 onlyifdoesntexist 确保安装目录 db.sqlite3 始终更新 - .gitignore 忽略所有 sqlite3 文件 - 前端翻页组件和样式更新
16 lines
324 B
JavaScript
16 lines
324 B
JavaScript
import { defineConfig } from 'vite'
|
|
import react from '@vitejs/plugin-react'
|
|
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
base: '/',
|
|
server: {
|
|
port: 5173,
|
|
proxy: {
|
|
'/api': 'http://127.0.0.1:8000',
|
|
'/admin': 'http://127.0.0.1:8000',
|
|
'/static': 'http://127.0.0.1:8000',
|
|
},
|
|
},
|
|
})
|