Sveltekit Iroco landing page.
It needs node 14.15, and 16 for running playwright end-to-end tests.
see this url for installing node versions.
You can install dependencies with npm install
(or pnpm install
or yarn
). Then run the unitests with
npm run test
Then run the playwright end-to-end tests (after installing playwright browser) :
npx playwright install
npm run eetest
To run a server :
npm run dev
# or start the server and open the app in a new browser tab
npm run dev -- --open
To create a static deployable version of your app with svelte adapter static:
npm run build
You can preview the production build with npm run preview
.