Skip to content

Commit

Permalink
Fix sample <script> tag.
Browse files Browse the repository at this point in the history
  • Loading branch information
JanMiksovsky committed May 30, 2019
1 parent 656079f commit d3fbe35
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Load the source file for the desired Elix component as a module. You can bundle
```html
<html>
<head>
<script src="node_modules/elix/src/DateComboBox.js"></script>
<script type="module" src="node_modules/elix/src/DateComboBox.js"></script>
</head>
<body>
<elix-date-combo-box date="1 Jan 2020"></elix-date-combo-box>
Expand Down
3 changes: 1 addition & 2 deletions webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@ module.exports = {
rules: [
{
test: /\.tsx?$/,
use: 'ts-loader',
// exclude: /node_modules/
use: 'ts-loader'
}
]
},
Expand Down

0 comments on commit d3fbe35

Please sign in to comment.