Created
January 31, 2020 06:50
-
-
Save dongsik-yoo/18ab7567d5b9c3f6861bb354917b3818 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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