infra/stacks/platform/modules/k8s-portal/files
Viktor Barzin ed6a2780fb
[ci skip] fix Svelte 5 table structure (thead/tbody required) + use versioned image tag
Fixed architecture and services pages to wrap table rows in <thead>/<tbody>
as required by Svelte 5's strict HTML validation.

E2E test passed: clean Alpine container → setup script → kubectl installed →
CA cert verified against API server → TLS SUCCESS
2026-03-07 15:34:32 +00:00
..
src [ci skip] fix Svelte 5 table structure (thead/tbody required) + use versioned image tag 2026-03-07 15:34:32 +00:00
static [ci skip] Move Terraform modules into stack directories 2026-02-22 14:38:14 +00:00
.gitignore [ci skip] Move Terraform modules into stack directories 2026-02-22 14:38:14 +00:00
.npmrc [ci skip] Move Terraform modules into stack directories 2026-02-22 14:38:14 +00:00
Dockerfile [ci skip] Move Terraform modules into stack directories 2026-02-22 14:38:14 +00:00
package-lock.json [ci skip] Move Terraform modules into stack directories 2026-02-22 14:38:14 +00:00
package.json [ci skip] Move Terraform modules into stack directories 2026-02-22 14:38:14 +00:00
README.md [ci skip] Move Terraform modules into stack directories 2026-02-22 14:38:14 +00:00
svelte.config.js [ci skip] Move Terraform modules into stack directories 2026-02-22 14:38:14 +00:00
tsconfig.json [ci skip] Move Terraform modules into stack directories 2026-02-22 14:38:14 +00:00
vite.config.ts [ci skip] Move Terraform modules into stack directories 2026-02-22 14:38:14 +00:00

sv

Everything you need to build a Svelte project, powered by sv.

Creating a project

If you're seeing this, you've probably already done this step. Congrats!

# create a new project
npx sv create my-app

To recreate this project with the same configuration:

# recreate this project
npx sv create --template minimal --types ts --install npm .

Developing

Once you've created a project and installed dependencies with npm install (or pnpm install or yarn), start a development server:

npm run dev

# or start the server and open the app in a new browser tab
npm run dev -- --open

Building

To create a production version of your app:

npm run build

You can preview the production build with npm run preview.

To deploy your app, you may need to install an adapter for your target environment.