summaryrefslogtreecommitdiff
path: root/examples/snowpack/astro.config.mjs
blob: 47fc0d32ea2f99ad3a1e99f8295a8f8071b65686 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
export default {
  projectRoot: '.',
  astroRoot: './src',
  dist: './dist',
  public: './public',
  extensions: {
    '.jsx': 'preact',
  },
  snowpack: {
    optimize: {
      bundle: false,
      minify: true,
      target: 'es2018',
    },
  },
};