diff options
Diffstat (limited to 'snowpack.config.mjs')
-rw-r--r-- | snowpack.config.mjs | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/snowpack.config.mjs b/snowpack.config.mjs new file mode 100644 index 0000000..f4340c6 --- /dev/null +++ b/snowpack.config.mjs @@ -0,0 +1,26 @@ +/** @type {import("snowpack").SnowpackUserConfig } */ +export default { + mount: { + /* ... */ + }, + plugins: [ + /* ... */ + ], + routes: [ + /* Enable an SPA Fallback in development: */ + // {"match": "routes", "src": ".*", "dest": "/index.html"}, + ], + optimize: { + /* Example: Bundle your final build: */ + // "bundle": true, + }, + packageOptions: { + /* ... */ + }, + devOptions: { + /* ... */ + }, + buildOptions: { + /* ... */ + }, +}; |