diff options
author | 2021-06-14 19:45:51 -0700 | |
---|---|---|
committer | 2021-06-14 19:45:51 -0700 | |
commit | 7eb887edd527713214790198de3ccfe828a5768d (patch) | |
tree | d0a782385e6aeccf62b698fe5c15f1833aba3719 /demos/simple-react/snowpack.config.js | |
parent | 122ef023dd642af830a5419b6172640ebf8af841 (diff) | |
download | bun-7eb887edd527713214790198de3ccfe828a5768d.tar.gz bun-7eb887edd527713214790198de3ccfe828a5768d.tar.zst bun-7eb887edd527713214790198de3ccfe828a5768d.zip |
HMR crashily works, started working on CSS Scanner
Former-commit-id: d0f91082fcc8da17d224acb5432339c5d817e1c2
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: { + /* ... */ + }, +}; |