From 30b7eb7c7346cd2300ae0dcb742dae7a5b3d551c Mon Sep 17 00:00:00 2001 From: alex Date: Mon, 24 Jan 2022 22:57:21 +0000 Subject: [PATCH] init --- snowpack.config.js | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 snowpack.config.js diff --git a/snowpack.config.js b/snowpack.config.js new file mode 100644 index 00000000..266476d8 --- /dev/null +++ b/snowpack.config.js @@ -0,0 +1,21 @@ +// Snowpack Configuration File +// See all supported options: https://www.snowpack.dev/reference/configuration + +/** @type {import("snowpack").SnowpackUserConfig } */ +module.exports = { + mount: { + /* ... */ + }, + plugins: [ + /* ... */ + ], + packageOptions: { + /* ... */ + }, + devOptions: { + /* ... */ + }, + buildOptions: { + /* ... */ + }, +};