swh:1:snp:b9cfc191315c39b7279ffda4ccdcea8f7151647f
Raw File
Tip revision: 78d860b422d32149081252be917e6d3405825ce9 authored by dependabot[bot] on 06 January 2023, 19:23:19 UTC
Bump json5 from 2.1.3 to 2.2.3
Tip revision: 78d860b
snowpack.config.js
/** @type {import("snowpack").SnowpackUserConfig } */
module.exports = {
  mount: {
    public: {url: '/', static: true},
    src: {url: '/dist'},
  },
  plugins: [
    '@snowpack/plugin-react-refresh',
    '@snowpack/plugin-dotenv',
    '@snowpack/plugin-typescript',
  ],
  routes: [
    /* Enable an SPA Fallback in development: */
    // {"match": "routes", "src": ".*", "dest": "/index.html"},
  ],
  optimize: {
    /* Example: Bundle your final build: */
    // "bundle": true,
  },
  packageOptions: {
    /* ... */
  },
  devOptions: {
    /* ... */
  },
  buildOptions: {
    /* ... */
  },
};
back to top