search-engine-stract/frontend
2024-12-03 15:56:45 +01:00
..
src update documentation links 2024-12-03 15:56:45 +01:00
static disallow bots from /search in robots.txt 2024-03-22 11:05:44 +01:00
tests 🥬 Svelte frontend (#91) 2023-09-10 16:32:03 +00:00
.env use static env variables in frontend 2023-12-20 07:37:26 +01:00
.env.example 🥬 Svelte frontend (#91) 2023-09-10 16:32:03 +00:00
.eslintignore Run frontend lint in CI (#180) 2024-03-13 09:48:07 +01:00
.eslintrc.cjs Accessibility overhaul (#231) 2024-10-09 11:12:09 +02:00
.gitignore 🥬 Svelte frontend (#91) 2023-09-10 16:32:03 +00:00
.npmrc 🥬 Svelte frontend (#91) 2023-09-10 16:32:03 +00:00
.prettierignore 🥬 Svelte frontend (#91) 2023-09-10 16:32:03 +00:00
.prettierrc 🥬 Svelte frontend (#91) 2023-09-10 16:32:03 +00:00
package-lock.json just update 2024-12-03 15:05:07 +01:00
package.json Update to Svelte 5 (#233) 2024-11-04 10:44:05 +01:00
playwright.config.ts 🥬 Svelte frontend (#91) 2023-09-10 16:32:03 +00:00
postcss.config.js 🥬 Svelte frontend (#91) 2023-09-10 16:32:03 +00:00
README.md 🥬 Svelte frontend (#91) 2023-09-10 16:32:03 +00:00
svelte.config.js custom captcha to reduce the number of bots scraping the search results 2024-09-04 15:44:57 +02:00
tailwind.config.ts Add theming specific styling to prose (#103) 2023-09-25 12:32:33 +00:00
tsconfig.json Run frontend lint in CI (#180) 2024-03-13 09:48:07 +01:00
vite.config.ts move captcha images/audio to correct location during build 2024-09-05 10:49:15 +02:00

create-svelte

Everything you need to build a Svelte project, powered by create-svelte.

Creating a project

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

# create a new project in the current directory
npm create svelte@latest

# create a new project in my-app
npm create svelte@latest my-app

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.