Skip to content

Commit

Permalink
chore(snowpack): add snowpack config
Browse files Browse the repository at this point in the history
  • Loading branch information
SaidBySolo committed Jan 4, 2021
1 parent 7a8eccb commit e6907f6
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions snowpack.config.js
Original file line number Diff line number Diff line change
@@ -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: {
/* ... */
},
};

0 comments on commit e6907f6

Please sign in to comment.