12345678910111213141516171819202122232425 |
- '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,
- },
- };
|