Skip to content
Snippets Groups Projects
Select Git revision
  • master
  • Dorine-master-patch-14456
  • 4.0.0
  • 3.4.0
  • 3.3.0
  • 3.2.0
  • 3.1.3
  • 3.1.2
  • 3.1.1
  • 3.1.0
  • 3.0.16
  • 3.0.15
  • 3.0.14
  • 3.0.13
  • 3.0.12
  • 3.0.11
  • 3.0.10
  • 3.0.9
  • 3.0.6
  • 3.0.5
  • 3.0.4
  • 3.0.3
22 results

poetry.lock

Blame
  • svelte.config.js 666 B
    import node from "@sveltejs/adapter-node"
    import preprocess from "svelte-preprocess"
    
    /** @type {import('@sveltejs/kit').Config} */
    const svelteKitConfig = {
      kit: {
        // By default, `npm run build` will create a standard Node app.
        // You can create optimized builds for different platforms by
        // specifying a different adapter
        adapter: node({
          precompress: true,
        }),
    
        csrf: {
          // Disabling is required for authentication.
          checkOrigin: false,
        },
      },
    
      // Consult https://github.com/sveltejs/svelte-preprocess
      // for more information about preprocessors
      preprocess: [preprocess({})],
    }
    
    export default svelteKitConfig