m0e.space/frontend
Andriy Cherniy 1d7dd80850 searxng 2022-10-17 23:35:05 +03:00
..
src searxng 2022-10-17 23:35:05 +03:00
static Fixed image 2022-08-25 16:47:13 +03:00
.eslintignore initial commit 2022-08-11 14:01:27 +03:00
.eslintrc.cjs initial commit 2022-08-11 14:01:27 +03:00
.gitignore initial commit 2022-08-11 14:01:27 +03:00
.npmrc initial commit 2022-08-11 14:01:27 +03:00
.prettierignore initial commit 2022-08-11 14:01:27 +03:00
.prettierrc initial commit 2022-08-11 14:01:27 +03:00
Dockerfile docker 2022-08-11 14:08:06 +03:00
README.md initial commit 2022-08-11 14:01:27 +03:00
package.json Fixed error page and upgraded svelte kit 2022-08-25 17:00:45 +03:00
pnpm-lock.yaml Fixed error page and upgraded svelte kit 2022-08-25 17:00:45 +03:00
postcss.config.cjs initial commit 2022-08-11 14:01:27 +03:00
svelte.config.js fixed static serve 2022-08-11 14:35:22 +03:00
tailwind.config.cjs initial commit 2022-08-11 14:01:27 +03:00
tsconfig.json initial commit 2022-08-11 14:01:27 +03:00
vite.config.js fixed static serve 2022-08-11 14:35:22 +03:00

README.md

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 init svelte

# create a new project in my-app
npm init svelte 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.