Last active
October 14, 2020 07:54
-
-
Save 3dln/10f501f7924dc6120f07186ab146c532 to your computer and use it in GitHub Desktop.
virgool webpack tutorial 3-1
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: './source/app.js', | |
output: { | |
filename: 'app.bundle.js', | |
path: path.resolve(__dirname, 'build'), | |
} | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment