Skip to content

Commit

Permalink
Fixes build dir
Browse files Browse the repository at this point in the history
  • Loading branch information
mrharpo committed Dec 13, 2024
1 parent 3034b87 commit d2008dc
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
Data
*.pyc

node_modules
node_modules
dist
.vite
1 change: 0 additions & 1 deletion src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
<meta charset="utf-8">
<title>p5js-es6-boilerplate</title>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link href="index.css" rel="stylesheet">
</head>

<body>
Expand Down
5 changes: 4 additions & 1 deletion vite.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,8 @@ export default {
root: 'src',
server: {
port: 3000,
}
},
build: {
outDir: '../dist',
},
}

0 comments on commit d2008dc

Please sign in to comment.