blog.jfmonty2.com codebase
Go to file
2023-08-15 11:10:22 -07:00
src start working on sidenotes post 2023-08-15 11:10:22 -07:00
static change font of drop caps 2023-08-15 11:06:54 -07:00
tmp under construction 2022-11-04 20:14:26 -07:00
.gitignore initial commit 2021-10-17 21:05:23 -07:00
jsconfig.json figure out how everything works again 2022-05-11 22:02:37 -07:00
package-lock.json update node modules 2022-05-11 20:36:23 -07:00
package.json initial work on sidenotes 2021-10-25 08:09:37 -07:00
README.md initial commit 2021-10-17 21:05:23 -07:00
svelte.config.js fix sidenotes 2022-05-14 07:43:08 -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
npm init svelte@next

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

Note: the @next is temporary

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

Before creating a production version of your app, install an adapter for your target environment. Then:

npm run build

You can preview the built app with npm run preview, regardless of whether you installed an adapter. This should not be used to serve your app in production.