mirror of
https://github.com/handsomezhuzhu/AeroStart.git
synced 2026-02-20 12:00:15 +00:00
46 lines
1.1 KiB
TypeScript
46 lines
1.1 KiB
TypeScript
import path from 'path';
|
|
import { defineConfig } from 'vite';
|
|
import react from '@vitejs/plugin-react';
|
|
import { VitePWA } from 'vite-plugin-pwa';
|
|
|
|
export default defineConfig({
|
|
server: {
|
|
port: 3000,
|
|
host: '0.0.0.0',
|
|
proxy: {
|
|
'/api/bilibili': {
|
|
target: 'https://s.search.bilibili.com',
|
|
changeOrigin: true,
|
|
rewrite: (path) => path.replace(/^\/api\/bilibili/, '/main/suggest'),
|
|
secure: false,
|
|
}
|
|
}
|
|
},
|
|
plugins: [
|
|
react(),
|
|
VitePWA({
|
|
injectRegister: null,
|
|
registerType: 'autoUpdate',
|
|
includeAssets: ['favicon.ico', 'apple-touch-icon.png', 'masked-icon.svg', 'wallpapers/*'],
|
|
manifest: {
|
|
name: 'AeroStart',
|
|
short_name: 'AeroStart',
|
|
description: 'A beautiful, fast, and customizable start page for your browser.',
|
|
theme_color: '#000000',
|
|
icons: [
|
|
{
|
|
src: 'favicon.ico',
|
|
sizes: '64x64 32x32 24x24 16x16',
|
|
type: 'image/x-icon'
|
|
}
|
|
]
|
|
}
|
|
})
|
|
],
|
|
resolve: {
|
|
alias: {
|
|
'@': path.resolve(__dirname, './src'),
|
|
}
|
|
}
|
|
});
|