funstack-static-knowledge
FUNSTACK Static Knowledge
FUNSTACK Static (@funstack/static) is a React framework designed to build SPA application that can be deployed as static files to any static hosting service. Its prominent features is support for React Server Components (RSC) which allows optimizing the performance of the application by rendering parts of the UI at build time.
Note that FUNSTACK Static never runs on the server at runtime (except during development). Server Components are rendered at build time into RSC payloads which are then shipped to the client. The client React runtime can then seamlessly render both Client and Server Components into the DOM.
FUNSTACK Static Entrypoint
FUNSTACk Static is served as a Vite plugin. See your app's vite.config.ts file for the current configuration. A typical configuration looks like this:
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
import { funstackStatic } from "@funstack/static";
More from uhyo/funstack-router
funstack-router-knowledge
Use this skill when you need information about `@funstack/router` (the React router your app uses). What it is, API references, best practices, etc.
8create-pr
A skill to create a pull request on a GitHub repository. Use this skill when the user wants to create a pull request for the changes you have made.
1docs-consistency
Ensure consistency of documentation files. Should be used automatically when you made a significant change to the codebase that may affect the documentation, or when you made a significant change to the documentation itself.
1release-funstack
A skill to make a GitHub release for the `@funstack/router` package. Use this skill when the user wants to release a new version of the package.
1