Created
August 18, 2019 09:50
-
-
Save thanapongp/000366dfdaf9c7487fab6c91633d871f to your computer and use it in GitHub Desktop.
initial webpack.config.js
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 path = require('path'); | |
| module.exports = { | |
| entry: './src/js/main.js', | |
| output: { | |
| filename: 'index.js', | |
| path: path.resolve(__dirname, 'src', 'js') | |
| } | |
| }; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment