Skip to content
Snippets Groups Projects
Select Git revision
  • e7231c2857b8bbe74f24c4671243ac89862827ef
  • master default protected
  • graphiques_dispositifs
  • documentations-html-c4b5c7552f81dd5eebe527c7df3f9bd46b18738e
  • documentations-html-d90f57783ef1cedc4b368ed0cdca1ed41c672d39
  • documentations-html-f0e8dcec4bba9d7e8b79b95b79fedf732f2d19ec
  • documentations-html-fd10cfaeb1ac3b2fcd47b527a8ece2958c0a2dbe
  • documentations-html-fbb6ca14cc3bec2a3e98ba0cbb3fd98600828f8c
  • ajout-variable-taux-allegement-general
  • tester-variable-taux-allegement-cotisations
  • ppa-rsa
  • documentations-html-acad4c9f95a39e798170e3e9ab147b24b9f7e613
  • 184-ajouter-une-variable-sur-le-non-recours
  • aides-logement
  • statistiques_impot
  • documentations-html-ab2ff75179b3a97939d5c802e370f32c1978b99b
  • statistiques_impot_corrections_chloe
  • documentations-html-e96b6fd1b3963bc54903d8de1e23ea3f7dbb2e00
  • cdhr_reform
  • memo_pfu
  • 177-integration-erfs-2021-pipeline
21 results

example.env

Blame
  • vite.config.ts 596 B
    import { sveltekit } from "@sveltejs/kit/vite"
    import yaml from "js-yaml"
    import { defineConfig } from "vite"
    
    // import yamlPlugin from "@rollup/plugin-yaml"
    import yamlPlugin from "./plugin-yaml-patched"
    
    export default defineConfig({
      build: {
        // Increase size of chunks to 5 MB, to be able to import
        // JSON files extracted from OpenFisca country package.
        chunkSizeWarningLimit: 7680,
      },
      plugins: [
        yamlPlugin({
          schema: yaml.JSON_SCHEMA, // Keep dates as strings.
        }), // To import YAML files
        sveltekit(),
      ],
      ssr: {
        noExternal: ["d3-scale"],
      },
    })