/** @type {import("snowpack").SnowpackUserConfig } */ export default { mount: { public: {url: '/', static: true}, frontend: {url: '/dist'}, }, plugins: ['@snowpack/plugin-vue', '@snowpack/plugin-dotenv'], routes: [ /* Enable an SPA Fallback in development: */ // {"match": "routes", "src": ".*", "dest": "/index.html"}, ], optimize: { /* Example: Bundle your final build: */ // "bundle": true, }, packageOptions: { /* ... */ }, devOptions: { /* ... */ }, buildOptions: { /* ... */ }, };