'use strict'; module.exports = { mount: { public: { url: '/', static: true }, src: { url: '/dist' }, }, plugins: [ '@snowpack/plugin-postcss', '@prefresh/snowpack', [ '@snowpack/plugin-webpack', { sourceMap: true, }, ], ], routes: [{ match: 'routes', src: '.*', dest: '/index.html' }], packageOptions: { sourcemap: false, }, buildOptions: { sourcemap: true, }, };