forked from mirrors/homebox
51 lines
1.1 KiB
TypeScript
51 lines
1.1 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"],
|
|
nitro: {
|
|
devProxy: {
|
|
"/api": {
|
|
target: "http://localhost:7745/api",
|
|
changeOrigin: true,
|
|
},
|
|
},
|
|
},
|
|
css: ["@/assets/css/main.css"],
|
|
pwa: {
|
|
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",
|
|
},
|
|
],
|
|
},
|
|
},
|
|
});
|