This repository has been archived on 2024-06-08. You can view files and clone it, but cannot push or open issues or pull requests.
SolarAgent/vite.config.ts
2024-03-31 18:00:09 +08:00

50 lines
1.1 KiB
TypeScript

import { fileURLToPath, URL } from "node:url"
import { defineConfig } from "vite"
import { VitePWA as vitePWA } from "vite-plugin-pwa"
import vue from "@vitejs/plugin-vue"
import vueJsx from "@vitejs/plugin-vue-jsx"
import unocss from "unocss/vite"
// https://vitejs.dev/config/
export default defineConfig({
plugins: [
vue(),
vueJsx(),
unocss(),
vitePWA({
registerType: "autoUpdate",
useCredentials: true,
manifest: {
name: "Solian",
description: "The Solar Network Application",
theme_color: "#4b5094",
display: "standalone",
icons: [
{
src: "icon.png",
sizes: "1024x1024",
type: "image/png",
purpose: "any"
}
]
},
workbox: {
sourcemap: true,
cleanupOutdatedCaches: true
}
})
],
resolve: {
alias: {
"@": fileURLToPath(new URL("./src", import.meta.url))
}
},
server: {
proxy: {
"/.well-known": "http://localhost:8445",
"/api": "http://localhost:8445"
}
}
})