- Spring Boot 后端服务 (hss-home-service) - delivery-miniapp 配送小程序 - website 官网 (Nuxt) - docs 架构设计文档 - Docker 容器化部署配置 Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
51 lines
1.2 KiB
TypeScript
51 lines
1.2 KiB
TypeScript
export default defineNuxtConfig({
|
|
ssr: true,
|
|
|
|
css: ['~/assets/css/main.css'],
|
|
|
|
modules: ['@nuxtjs/tailwindcss'],
|
|
|
|
app: {
|
|
head: {
|
|
titleTemplate: '%s | 智慧医养居家上门服务平台',
|
|
htmlAttrs: { lang: 'zh-CN' },
|
|
meta: [
|
|
{ charset: 'utf-8' },
|
|
{ name: 'viewport', content: 'width=device-width, initial-scale=1' },
|
|
{ name: 'description', content: '面向政府、医院与养老机构的智慧医养居家上门服务闭环管理平台' },
|
|
{ name: 'keywords', content: '智慧医养平台,居家养老上门服务系统,长护险服务管理,居家照护管理系统,养老服务监管平台' }
|
|
],
|
|
link: [
|
|
{ rel: 'icon', type: 'image/svg+xml', href: '/favicon.svg' }
|
|
]
|
|
}
|
|
},
|
|
|
|
nitro: {
|
|
prerender: {
|
|
crawlLinks: true,
|
|
failOnError: false,
|
|
routes: [
|
|
'/',
|
|
'/solution',
|
|
'/capabilities',
|
|
'/scenarios',
|
|
'/service-loop',
|
|
'/security',
|
|
'/resources',
|
|
'/about',
|
|
'/contact',
|
|
'/demo'
|
|
]
|
|
}
|
|
},
|
|
|
|
runtimeConfig: {
|
|
public: {
|
|
useMockLead: false,
|
|
apiPrefix: '/api/hss',
|
|
platformLoginUrl: '/platform/login'
|
|
}
|
|
}
|
|
})
|