diff options
Diffstat (limited to 'demos/css-stress-test/snowpack.config.js')
-rw-r--r-- | demos/css-stress-test/snowpack.config.js | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/demos/css-stress-test/snowpack.config.js b/demos/css-stress-test/snowpack.config.js new file mode 100644 index 000000000..cf580b9f9 --- /dev/null +++ b/demos/css-stress-test/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 = { + root: "src", + mount: { + public: "/", + src: "/", + }, + plugins: ["@snowpack/plugin-react-refresh"], + packageOptions: { + /* ... */ + }, + devOptions: { + /* ... */ + }, + buildOptions: { + /* ... */ + }, +}; |