From 7eb887edd527713214790198de3ccfe828a5768d Mon Sep 17 00:00:00 2001 From: Jarred Sumner Date: Mon, 14 Jun 2021 19:45:51 -0700 Subject: HMR crashily works, started working on CSS Scanner Former-commit-id: d0f91082fcc8da17d224acb5432339c5d817e1c2 --- demos/simple-react/snowpack.config.js | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 demos/simple-react/snowpack.config.js (limited to 'demos/simple-react/snowpack.config.js') 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: { + /* ... */ + }, +}; -- cgit v1.2.3