Skip to content

Task/llm optimizations 3 - #1047

Merged
nathanrod merged 10 commits into
mainfrom
task/llm-optimizations-3
Aug 31, 2026
Merged

nathanrod merged 10 commits into
mainfrom
task/llm-optimizations-3

Conversation

@nathanrod

Copy link
Copy Markdown
Member

PR type

What kind of change does this PR introduce?

  • Bugfix
  • Feature
  • Code style update
  • Refactoring (no functional changes, no api changes)
  • Build related changes
  • Documentation content changes
  • Other... Please describe: task

PR checklist

Please check if your PR fulfills the following requirements:

  • I have read the CONTRIBUTING.md doc
  • The Git workflow follows our guidelines: CONTRIBUTING.md#git
  • I have added necessary documentation (if appropriate)

Does this PR introduce a breaking change?

  • Yes
  • No

Copilot AI left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Warning

  • Copilot's review of this pull request may be incomplete because some of the changed files are excluded by your Copilot content exclusion settings. See Excluding content from Copilot for details.

Pull request overview

Adds build-time SSR for selected Vue pages alongside pricing, server, privacy-stack, localization, and cryptography updates.

Changes:

  • Introduces SSR build/render infrastructure for pricing and server pages.
  • Expands pricing, server, privacy-stack, and footer content.
  • Adds a Classic McEliece WASM wrapper.

Reviewed changes

Copilot reviewed 35 out of 43 changed files in this pull request and generated 3 comments.

Show a summary per file
File Description
.gitignore Ignores generated SSR bundles.
.env.example Excluded from review.
Dockerfile Excluded from review.
src/content/en/pages/home.md Excluded from review.
src/content/en/pages/pricing.md Excluded from review.
src/content/en/pages/privacy-policy-mobile.md Excluded from review.
src/content/es/pages/home.md Excluded from review.
src/content/es/pages/pricing.md Excluded from review.
src/content/es/pages/services.md Excluded from review.
src/data/ssr/light.json Excluded from review.
src/data/ssr/pricing.json Excluded from review.
src/data/ssr/pricing_es.json Excluded from review.
src/data/ssr/servers.json Excluded from review.
src/i18n/en.toml Adds legal-entity text.
src/i18n/es.toml Adds translated legal-entity text.
src/themes/ivpn-v3/assets/js/app.js Enables hydration and delays mounting for routing.
src/themes/ivpn-v3/assets/js/components/PriceBox.vue Conditionally renders the footer slot.
src/themes/ivpn-v3/assets/js/components/ServerList.vue Adds the server summary.
src/themes/ivpn-v3/assets/js/components/ServersPage.vue Adds server discovery and FAQ content.
src/themes/ivpn-v3/assets/js/servers.js Mounts the expanded server page.
src/themes/ivpn-v3/assets/js/ssr/entry.light.js Adds an unused Light SSR entry.
src/themes/ivpn-v3/assets/js/ssr/entry.pricing.js Adds pricing SSR rendering.
src/themes/ivpn-v3/assets/js/ssr/entry.servers.js Adds server-list SSR rendering.
src/themes/ivpn-v3/assets/js/ssr/shims/estree-walker-shim.js Adds an ESM compatibility shim.
src/themes/ivpn-v3/assets/js/ssr/shims/vue-compat-server-renderer.js Adds a server-renderer re-export shim.
src/themes/ivpn-v3/assets/js/vendor/liboqs/classic-mceliece-348864.js Adds the McEliece KEM wrapper.
src/themes/ivpn-v3/assets/js/views/Prices.vue Updates pricing content and layout.
src/themes/ivpn-v3/assets/scss/components/privacy-stack.scss Styles the privacy-stack cards.
src/themes/ivpn-v3/assets/scss/components/servers.scss Styles new server content.
src/themes/ivpn-v3/assets/scss/pages.scss Includes privacy-stack styles.
src/themes/ivpn-v3/layouts/pages/application.html Injects generated application SSR HTML.
src/themes/ivpn-v3/layouts/pages/servers.html Changes the server mount container.
src/themes/ivpn-v3/layouts/partials/blocks/privacy_stack_three_column.html Adds the privacy-stack block.
src/themes/ivpn-v3/layouts/partials/footer.html Displays legal-entity text.
src/themes/ivpn-v3/locales/en.json Excluded from review.
src/themes/ivpn-v3/locales/es.json Excluded from review.
src/themes/ivpn-v3/package-lock.json Excluded from review.
src/themes/ivpn-v3/package.json Excluded from review.
src/themes/ivpn-v3/scripts/ssr-render.mjs Generates Hugo SSR data.
src/themes/ivpn-v3/ssr-dist/entry.servers.js Adds a generated server bundle.
src/themes/ivpn-v3/vite.config.ssr.js Configures SSR bundling.
Files not reviewed (1)
  • src/themes/ivpn-v3/package-lock.json: Generated file
Files excluded by content exclusion policy (16)
  • .env.example
  • Dockerfile
  • src/content/en/pages/home.md
  • src/content/en/pages/pricing.md
  • src/content/en/pages/privacy-policy-mobile.md
  • src/content/es/pages/home.md
  • src/content/es/pages/pricing.md
  • src/content/es/pages/services.md
  • src/data/ssr/light.json
  • src/data/ssr/pricing.json
  • src/data/ssr/pricing_es.json
  • src/data/ssr/servers.json
  • src/themes/ivpn-v3/locales/en.json
  • src/themes/ivpn-v3/locales/es.json
  • src/themes/ivpn-v3/package-lock.json
  • src/themes/ivpn-v3/package.json

💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.

import { createSSRApp } from 'vue'
import { createI18n } from 'vue-i18n'
import { renderToString } from '@vue/server-renderer'
import ServerList from '@/components/ServerList.vue'
Comment on lines +12 to +13
{{- else if in .RelPermalink "light" -}}
{{- with index site.Data.ssr "light" -}}{{- $ssrHtml = .html -}}{{- end -}}
@@ -0,0 +1,683 @@
import { _ as _export_sfc, l as ssrRenderAttrs_1, m as mergeProps, v as ssrInterpolate_1, B as ssrRenderAttr_1, E as ssrRenderList_1, o as ssrRenderClass_1, j as useI18n, z as useSSRContext, N as createI18n, O as createSSRApp, P as renderToString_1, L as es, M as en } from "./chunks/es-dxbRx2cL.js";
@nathanrod nathanrod moved this from In Progress to Deployable in ivpn.net Aug 28, 2026
@nathanrod
nathanrod requested a review from gorkapernas August 31, 2026 10:45
@nathanrod
nathanrod merged commit 813df2e into main Aug 31, 2026
3 checks passed
@github-project-automation github-project-automation Bot moved this from Deployable to Done in ivpn.net Aug 31, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

Status: Done

Development

Successfully merging this pull request may close these issues.

3 participants