Skip to content

Instantly share code, notes, and snippets.

@dongsik-yoo
Created January 31, 2020 06:50
Show Gist options
  • Save dongsik-yoo/18ab7567d5b9c3f6861bb354917b3818 to your computer and use it in GitHub Desktop.
Save dongsik-yoo/18ab7567d5b9c3f6861bb354917b3818 to your computer and use it in GitHub Desktop.
const HtmlWebpackPlugin = require('html-webpack-plugin');
const config = {
...,
resolve: {
extensions: ['.ts', '.tsx', '.js'], // Add '.js'.
...
},
plugins: [
...,
new HtmlWebpackPlugin()
],
devtool: 'source-map',
devServer: {
historyApiFallback: false,
host: '0.0.0.0',
disableHostCheck: true
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment