mirror of
https://github.com/hay-kot/homebox.git
synced 2024-11-22 00:25:43 +00:00
f91b33db38
* change all icons to use iconify * fix minor UI elements * fix layout of table
62 lines
1.3 KiB
TypeScript
62 lines
1.3 KiB
TypeScript
import { defineNuxtConfig } from "nuxt/config";
|
|
|
|
// https://v3.nuxtjs.org/api/configuration/nuxt.config
|
|
export default defineNuxtConfig({
|
|
ssr: false,
|
|
modules: [
|
|
"@nuxtjs/tailwindcss",
|
|
"@pinia/nuxt",
|
|
"@vueuse/nuxt",
|
|
"@vite-pwa/nuxt",
|
|
"./nuxt.proxyoverride.ts",
|
|
"unplugin-icons/nuxt",
|
|
],
|
|
nitro: {
|
|
devProxy: {
|
|
"/api": {
|
|
target: "http://localhost:7745/api",
|
|
ws: true,
|
|
changeOrigin: true,
|
|
},
|
|
},
|
|
},
|
|
css: ["@/assets/css/main.css"],
|
|
pwa: {
|
|
workbox: {
|
|
navigateFallbackDenylist: [/^\/api/],
|
|
},
|
|
injectRegister: "script",
|
|
injectManifest: {
|
|
swSrc: "sw.js",
|
|
},
|
|
devOptions: {
|
|
// Enable to troubleshoot during development
|
|
enabled: false,
|
|
},
|
|
manifest: {
|
|
name: "Homebox",
|
|
short_name: "Homebox",
|
|
description: "Home Inventory App",
|
|
theme_color: "#5b7f67",
|
|
start_url: "/home",
|
|
icons: [
|
|
{
|
|
src: "pwa-192x192.png",
|
|
sizes: "192x192",
|
|
type: "image/png",
|
|
},
|
|
{
|
|
src: "pwa-512x512.png",
|
|
sizes: "512x512",
|
|
type: "image/png",
|
|
},
|
|
{
|
|
src: "pwa-512x512.png",
|
|
sizes: "512x512",
|
|
type: "image/png",
|
|
purpose: "any maskable",
|
|
},
|
|
],
|
|
},
|
|
},
|
|
});
|