mirror of
https://github.com/isledecomp/isle.pizza.git
synced 2026-05-02 10:43:56 +00:00
- Replace vanilla JS with Svelte 5 components - Add Vite build system with Terser optimization - Reorganize assets into src/ and public/ directories - Update README with setup instructions
12 lines
238 B
JavaScript
12 lines
238 B
JavaScript
// Navigation utilities
|
|
import { currentPage } from '../stores.js';
|
|
|
|
export function navigateTo(page) {
|
|
currentPage.set(page);
|
|
history.pushState({ page }, '', '#' + page);
|
|
}
|
|
|
|
export function navigateBack() {
|
|
history.back();
|
|
}
|