A bare-bones SvelteKit and Apollo GraphQL starter.
create a .env
file in the project root directory and copy over the contents of .env.example
Install dependencies with Yarn of NPM:
yarn
# or
npm install
Start development server with:
yarn dev
# or
npm run dev
Before creating a production version of your app, install an adapter for your target environment. Then:
yarn build
# or
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.