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

57 lines
1.3 KiB
TypeScript
Raw Permalink Normal View History

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: {
2024-03-31 09:49:31 +00:00
name: "Solian",
description: "The Solar Network Application",
theme_color: "#4b5094",
2024-03-30 04:06:19 +00:00
display: "standalone",
icons: [
{
2024-03-30 10:52:03 +00:00
src: "icon.png",
2024-03-30 04:06:19 +00:00
sizes: "1024x1024",
type: "image/png",
2024-03-31 10:00:09 +00:00
purpose: "any"
2024-03-31 10:05:22 +00:00
},
{
src: "maskable-icon.png",
sizes: "1024x1024",
type: "image/png",
purpose: "maskable"
2024-03-31 09:49:31 +00:00
}
2024-03-30 04:06:19 +00:00
]
},
2024-03-31 09:49:31 +00:00
workbox: {
sourcemap: true,
2024-03-31 14:35:39 +00:00
cleanupOutdatedCaches: true,
globPatterns: ['**/*.{js,css,ico,png,svg}'],
2024-03-31 09:49:31 +00:00
}
})
],
resolve: {
alias: {
"@": fileURLToPath(new URL("./src", import.meta.url))
}
},
server: {
proxy: {
"/.well-known": "http://localhost:8445",
"/api": "http://localhost:8445"
}
}
})