1
0
Fork
You've already forked personalweb
0
My personal web: https://alifnc.site
  • Svelte 40.5%
  • TypeScript 30.8%
  • JavaScript 20.6%
  • HTML 6.9%
  • CSS 1.2%
2025年01月01日 12:56:04 +07:00
src update: new year! 2025年01月01日 12:56:04 +07:00
static Revert "delete favicon" 2024年10月27日 19:44:44 +07:00
.gitignore first commit 2024年10月27日 15:56:10 +07:00
.npmrc first commit 2024年10月27日 15:56:10 +07:00
package-lock.json add: tailwindcss 2024年11月07日 21:25:13 +07:00
package.json add: tailwindcss 2024年11月07日 21:25:13 +07:00
postcss.config.js add: tailwindcss 2024年11月07日 21:25:13 +07:00
README.md first commit 2024年10月27日 15:56:10 +07:00
svelte.config.js add static adapter configuration 2024年10月27日 16:10:07 +07:00
tailwind.config.js add: tailwindcss 2024年11月07日 21:25:13 +07:00
tsconfig.json first commit 2024年10月27日 15:56:10 +07:00
vite.config.ts first commit 2024年10月27日 15:56:10 +07: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
npx sv create
# create a new project in my-app
npx sv create 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.