# xing-api-nuxt3 **Repository Path**: taohel/xing-api-nuxt3 ## Basic Information - **Project Name**: xing-api-nuxt3 - **Description**: nuxt3项目开发模板。提供常见的业务需求以及解决方案的代码示例。 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 2 - **Forks**: 1 - **Created**: 2025-05-09 - **Last Updated**: 2025-06-25 ## Categories & Tags **Categories**: Uncategorized **Tags**: nuxt3 ## README # Nuxt 3 的混合渲染模式(SSG + SSR) SSG(静态生成)+ CDN缓存 📄 文章页面(公开、适合 SEO) SSR(服务端渲染) 👤 用户界面(登录后访问,包含个性化内容) 1. 使用 nuxi build 构建项目(SSR 模式); 2. 将 .output/public/ 中的静态文件(如 JS、CSS、图片)上传到 CDN; 3. 配置 Nuxt 加载资源时使用 CDN 前缀,例如 https://cdn.yoursite.com/_nuxt/xxx.js; 4. 页面仍通过 Node SSR 生成,但资源走 CDN 加速。