Skip to content

Commit

Permalink
yahtzee.js
Browse files Browse the repository at this point in the history
  • Loading branch information
squalrus committed May 22, 2024
1 parent f574f16 commit ceafc5a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions dist/index.html
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
<!DOCTYPE html>

<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Yahtzee</title>
<script type="module" src="./bundle.js"></script>
<script type="module" src="./yahtzee.js"></script>
<style>
body {
background-color: aqua;
Expand Down
2 changes: 1 addition & 1 deletion webpack.config.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ module.exports = {
entry: './src/yahtzee.ts',
output: {
path: path.resolve(__dirname, 'dist'),
filename: 'bundle.js',
filename: 'yahtzee.js',
},
module: {
rules: [{test: /\.ts$/, use: 'ts-loader'}],
Expand Down

0 comments on commit ceafc5a

Please sign in to comment.