Configuration
Edit this page on GitHubYour project's configuration lives in a svelte.config.js file. All values are optional. The complete list of options, with defaults, is shown here:
svelte.config.js
tsconfig = {// options passed to svelte.compile (https://svelte.dev/docs#compile-time-svelte-compile)compilerOptions : {},// an array of file extensions that should be treated as Svelte componentsextensions : ['.svelte'],kit : {adapter :undefined ,alias : {},appDir : '_app',browser : {hydrate : true,router : true},csp : {mode : 'auto',directives : {'default-src':undefined // ...}},env : {publicPrefix : 'PUBLIC_'},files : {assets : 'static',hooks : 'src/hooks',lib : 'src/lib',params : 'src/params',routes : 'src/routes',serviceWorker : 'src/service-worker',template : 'src/app.html'},inlineStyleThreshold : 0,methodOverride : {parameter : '_method',allowed : []},moduleExtensions : ['.js', '.ts'],outDir : '.svelte-kit',package : {dir : 'package',emitTypes : true,// excludes all .d.ts and files starting with _ as the nameexports : (filepath ) => !/^_|\/_|\.d\.ts$/.test (filepath ),files : () => true},paths : {assets : '',base : ''},prerender : {concurrency : 1,crawl : true,default : false,enabled : true,entries : ['*'],onError : 'fail',origin : 'http://sveltekit-prerender'},routes : (filepath ) => !/(?:(?:^_|\/_)|(?:^\.|\/\.)(?!well-known))/.test (filepath ),serviceWorker : {register : true,files : (filepath ) => !/\.DS_Store/.test (filepath )},trailingSlash : 'never',version : {name :Date .now ().toString (),pollInterval : 0}},// options passed to svelte.preprocess (https://svelte.dev/docs#compile-time-svelte-preprocess)preprocess : null};export defaultconfig ;
adapterpermalink
Run when executing vite build and determines how the output is converted for different platforms. See Adapters.
aliaspermalink
An object containing zero or more aliases used to replace values in import statements. These aliases are automatically passed to Vite and TypeScript.
svelte.config.js
tsconfig = {kit : {alias : {// this will match a file'my-file': 'path/to/my-file.js',// this will match a directory and its contents// (`my-directory/x` resolves to `path/to/my-directory/x`)'my-directory': 'path/to/my-directory',// an alias ending /* will only match// the contents of a directory, not the directory itself'my-directory/*': 'path/to/my-directory/*'}}};
The built-in
$libalias is controlled byconfig.kit.files.libas it is used for packaging.
appDirpermalink
The directory relative to paths.assets where the built JS and CSS (and imported assets) are served from. (The filenames therein contain content-based hashes, meaning they can be cached indefinitely). Must not start or end with /.
browserpermalink
An object containing zero or more of the following boolean values:
- hydrate— whether to hydrate the server-rendered HTML with a client-side app. (It's rare that you would set this to- falseon an app-wide basis.)
- router— enables or disables the client-side router app-wide.
csppermalink
An object containing zero or more of the following values:
- mode— 'hash', 'nonce' or 'auto'
- directives— an object of- [directive]: value[]pairs
- reportOnly— an object of- [directive]: value[]pairs for CSP report-only mode
Content Security Policy configuration. CSP helps to protect your users against cross-site scripting (XSS) attacks, by limiting the places resources can be loaded from. For example, a configuration like this...
svelte.config.js
tsconfig = {kit : {csp : {directives : {'script-src': ['self']},reportOnly : {'script-src': ['self']}}}};export defaultconfig ;
...would prevent scripts loading from external sites. SvelteKit will augment the specified directives with nonces or hashes (depending on mode) for any inline styles and scripts it generates.
When pages are prerendered, the CSP header is added via a <meta http-equiv> tag (note that in this case, frame-ancestors, report-uri and sandbox directives will be ignored).
When
modeis'auto', SvelteKit will use nonces for dynamically rendered pages and hashes for prerendered pages. Using nonces with prerendered pages is insecure and therefore forbidden.
Note that most Svelte transitions work by creating an inline
<style>element. If you use these in your app, you must either leave thestyle-srcdirective unspecified or addunsafe-inline.
envpermalink
Environment variable configuration:
- publicPrefix— a prefix that signals that an environment variable is safe to expose to client-side code. See- $env/static/publicand- $env/dynamic/public. Note that Vite's- envPrefixmust be set separately if you are using Vite's environment variable handling - though use of that feature should generally be unnecessary.
filespermalink
An object containing zero or more of the following string values:
- assets— a place to put static files that should have stable URLs and undergo no processing, such as- favicon.icoor- manifest.json
- hooks— the location of your hooks module (see Hooks)
- lib— your app's internal library, accessible throughout the codebase as- $lib
- params— a directory containing parameter matchers
- routes— the files that define the structure of your app (see Routing)
- serviceWorker— the location of your service worker's entry point (see Service workers)
- template— the location of the template for HTML responses
inlineStyleThresholdpermalink
Inline CSS inside a <style> block at the head of the HTML. This option is a number that specifies the maximum length of a CSS file to be inlined. All CSS files needed for the page and smaller than this value are merged and inlined in a <style> block.
This results in fewer initial requests and can improve your First Contentful Paint score. However, it generates larger HTML output and reduces the effectiveness of browser caches. Use it advisedly.
methodOverridepermalink
See HTTP Method Overrides. An object containing zero or more of the following:
- parameter— query parameter name to use for passing the intended method value
- allowed- array of HTTP methods that can be used when overriding the original request method
moduleExtensionspermalink
An array of file extensions that SvelteKit will treat as modules. Files with extensions that match neither config.extensions nor config.kit.moduleExtensions will be ignored by the router.
outDirpermalink
The directory that SvelteKit writes files to during dev and build. You should exclude this directory from version control.
packagepermalink
Options related to creating a package.
- dir- output directory
- emitTypes- by default,- svelte-kit packagewill automatically generate types for your package in the form of- .d.tsfiles. While generating types is configurable, we believe it is best for the ecosystem quality to generate types, always. Please make sure you have a good reason when setting it to- false(for example when you want to provide handwritten type definitions instead)
- exports- a function with the type of- (filepath: string) => boolean. When- true, the filepath will be included in the- exportsfield of the- package.json. Any existing values in the- package.jsonsource will be merged with values from the original- exportsfield taking precedence
- files- a function with the type of- (filepath: string) => boolean. When- true, the file will be processed and copied over to the final output folder, specified in- dir
For advanced filepath matching, you can use exports and files options in conjunction with a globbing library:
svelte.config.js
tsmm from 'micromatch';constconfig = {kit : {package : {exports : (filepath ) => {if (filepath .endsWith ('.d.ts')) return false;returnmm .isMatch (filepath , ['!**/_*', '!**/internal/**']);},files :mm .matcher ('!**/build.*')}}};export defaultconfig ;
pathspermalink
An object containing zero or more of the following string values:
- assets— an absolute path that your app's files are served from. This is useful if your files are served from a storage bucket of some kind
- base— a root-relative path that must start, but not end with- /(e.g.- /base-path), unless it is the empty string. This specifies where your app is served from and allows the app to live on a non-root path
prerenderpermalink
See Prerendering. An object containing zero or more of the following:
- concurrency— how many pages can be prerendered simultaneously. JS is single-threaded, but in cases where prerendering performance is network-bound (for example loading content from a remote CMS) this can speed things up by processing other tasks while waiting on the network response
- crawl— determines whether SvelteKit should find pages to prerender by following links from the seed page(s)
- default— set to- trueto prerender encountered pages not containing- export const prerender = false
- enabled— set to- falseto disable prerendering altogether
- entries— an array of pages to prerender, or start crawling from (if- crawl: true). The- *string includes all non-dynamic routes (i.e. pages with no- [parameters])
- onError- 'fail'— (default) fails the build when a routing error is encountered when following a link
- 'continue'— allows the build to continue, despite routing errors
- function— custom error handler allowing you to log,- throwand fail the build, or take other action of your choosing based on the details of the crawltsimport- adapter from '@sveltejs/adapter-static';const- config = {- kit : {- adapter :- adapter (),- prerender : {- onError : ({- status ,- path ,- referrer ,- referenceType }) => {if (- path .- startsWith ('/blog')) throw new- Error ('Missing a blog page!');- console .- warn (`${- status } ${- path }${- referrer ? ` (${- referenceType } from ${- referrer })` : ''}`);}}}};export default- config ;
 
- origin— the value of- url.originduring prerendering; useful if it is included in rendered content
routespermalink
A (filepath: string) => boolean function that determines which files create routes and which are treated as private modules.
serviceWorkerpermalink
An object containing zero or more of the following values:
- register- if set to- false, will disable automatic service worker registration
- files- a function with the type of- (filepath: string) => boolean. When- true, the given file will be available in- $service-worker.files, otherwise it will be excluded.
trailingSlashpermalink
Whether to remove, append, or ignore trailing slashes when resolving URLs (note that this only applies to pages, not endpoints).
- 'never'— redirect- /x/to- /x
- 'always'— redirect- /xto- /x/
- 'ignore'— don't automatically add or remove trailing slashes.- /xand- /x/will be treated equivalently
This option also affects prerendering. If trailingSlash is always, a route like /about will result in an about/index.html file, otherwise it will create about.html, mirroring static webserver conventions.
Ignoring trailing slashes is not recommended — the semantics of relative paths differ between the two cases (
./yfrom/xis/y, but from/x/is/x/y), and/xand/x/are treated as separate URLs which is harmful to SEO. If you use this option, ensure that you implement logic for conditionally adding or removing trailing slashes fromrequest.pathinside yourhandlefunction.
versionpermalink
An object containing zero or more of the following values:
- name- current app version string
- pollInterval- interval in milliseconds to poll for version changes
Client-side navigation can be buggy if you deploy a new version of your app while people are using it. If the code for the new page is already loaded, it may have stale content; if it isn't, the app's route manifest may point to a JavaScript file that no longer exists. SvelteKit solves this problem by falling back to traditional full-page navigation if it detects that a new version has been deployed, using the name specified here (which defaults to a timestamp of the build).
If you set pollInterval to a non-zero value, SvelteKit will poll for new versions in the background and set the value of the updated store to true when it detects one.