Skip to content

Commit

Permalink
Revert snowpack config
Browse files Browse the repository at this point in the history
  • Loading branch information
AndyRae committed Feb 19, 2024
1 parent e75d2c7 commit 9f2903f
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions app/react-client-app/snowpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
module.exports = {
routes: [
{
match: 'routes',
src: '.*',
dest: '/index.html'
match: "routes",
src: ".*",
dest: "/index.html",
},
],
mount: {
Expand All @@ -24,12 +24,12 @@ module.exports = {
},
buildOptions: {
/* ... */
out: '../api/static/javascript/react' ,
out: "/api/static/javascript/react",
//watch: true
},
exclude: [
"**/node_modules/**/*", // from the default at https://www.snowpack.dev/reference/configuration
"**/.stories.js",
"**/stories/**/*"
]
"**/stories/**/*",
],
};

0 comments on commit 9f2903f

Please sign in to comment.