diff --git a/snowpack.config.js b/snowpack.config.js new file mode 100644 index 0000000..d373e4b --- /dev/null +++ b/snowpack.config.js @@ -0,0 +1,26 @@ +/** @type {import("snowpack").SnowpackUserConfig } */ +module.exports = { + mount: { + public: {url: '/', static: true}, + src: {url: '/dist'}, + }, + plugins: ['@snowpack/plugin-react-refresh', '@snowpack/plugin-dotenv'], + install: [ + /* ... */ + ], + installOptions: { + /* ... */ + }, + devOptions: { + /* ... */ + }, + buildOptions: { + /* ... */ + }, + proxy: { + /* ... */ + }, + alias: { + /* ... */ + }, +};