diff options
Diffstat (limited to 'demos/simple-react/snowpack.config.js')
-rw-r--r-- | demos/simple-react/snowpack.config.js | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/demos/simple-react/snowpack.config.js b/demos/simple-react/snowpack.config.js new file mode 100644 index 000000000..40d8ec9b1 --- /dev/null +++ b/demos/simple-react/snowpack.config.js @@ -0,0 +1,23 @@ +// Snowpack Configuration File +// See all supported options: https://www.snowpack.dev/reference/configuration + +/** @type {import("snowpack").SnowpackUserConfig } */ +module.exports = { + mount: { + src: "/dist", + public: { url: "/", static: true, resolve: false }, + resolve: true, + }, + plugins: [ + /* ... */ + ], + packageOptions: { + /* ... */ + }, + devOptions: { + /* ... */ + }, + buildOptions: { + /* ... */ + }, +}; |