Skip to content
Snippets Groups Projects
Select Git revision
  • 793db62c82161a6667aad4fda0c6e37d45014e06
  • master default protected
  • temp
  • cdhr_reform
  • revert-inflateur-contrefactuel-impot
  • lint
  • test-cas-type
  • indemnite-inflation
  • 0_5_8
  • 0_5_7
  • 0_5_6
  • 0_5_5
  • 0_5_4
  • 0_5_3
  • 0_5_2
  • 0_5_1
  • 1.0.304
  • 1.0.303
  • 1.0.302
  • 1.0.301
  • 1.0.300
  • 1.0.299
  • 1.0.298
  • 1.0.297
  • 1.0.296
  • 1.0.295
  • 1.0.294
  • 1.0.293
  • 1.0.292
  • 1.0.291
  • 1.0.290
  • 1.0.289
  • 1.0.288
  • 1.0.287
  • 1.0.286
  • 1.0.285
36 results

prettier.config.js

Blame
  • svelte.config.js 704 B
    import node from "@sveltejs/adapter-node"
    import sveltePreprocess from "svelte-preprocess"
    
    /** @type {import('@sveltejs/kit').Config} */
    const config = {
      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(),
    
        // hydrate the <div id="svelte"> element in src/app.html
        target: "#svelte",
      },
    
      // Consult https://github.com/sveltejs/svelte-preprocess
      // for more information about preprocessors
      preprocess: [
        sveltePreprocess({
          defaults: {
            style: "postcss",
          },
          postcss: true,
        }),
      ],
    }
    
    export default config