pixelcoda/search-platform

TYPO3 CMS Base Distribution

Maintainers

Package info

github.com/CasianBlanaru/pixelcoda-typo3-search

Type:project

pkg:composer/pixelcoda/search-platform

Statistics

Installs: 0

Dependents: 0

Suggesters: 0

Stars: 1

Open Issues: 0

v2.2.11 2026-06-08 08:09 UTC

This package is auto-updated.

Last update: 2026-06-25 15:12:54 UTC


README

Standalone Next.js frontend for TYPO3 Headless.

Structure

frontend/
├── package.json
├── next.config.js
├── railway.json
├── .env.example
└── src/
    ├── app/
    ├── components/
    └── lib/

Install

yarn install

Local env

Copy .env.example to .env.local and adjust the TYPO3 URL:

NEXT_PUBLIC_API_BASE_URL=https://api.typo3-inst.localhost
NEXT_PUBLIC_TYPO3_BASE_URL=https://api.typo3-inst.localhost
NEXT_PUBLIC_BASE_URL=https://typo3-inst.localhost
NEXT_PUBLIC_FRONTEND_FILE_API=/headless/fileadmin
NEXT_PUBLIC_SKIN=premium
NEXT_PUBLIC_HEADLESS_DEVTOOLS=true

Development

yarn dev

Production

yarn build
yarn start

DevTools

If NEXT_PUBLIC_HEADLESS_DEVTOOLS=true, open the overlay with:

CMD + SHIFT + H
CTRL + SHIFT + H

TYPO3 requirement

TYPO3 must have TYPO3-Headless/headless installed and must return JSON at the configured NEXT_PUBLIC_API_BASE_URL.