Created
January 23, 2017 23:09
-
-
Save jacobmischka/6a8a0f95f15fc5ca39611df8219ab704 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
module.exports = { | |
entry: { | |
bundle: "./_js/main.js" | |
}, | |
output: { | |
path: "./js/", | |
publicPath: "/js/", | |
filename: "[name].js" | |
}, | |
resolve: { | |
alias: { | |
'ScrollMagicGSAP': 'scrollmagic/scrollmagic/uncompressed/plugins/animation.gsap' | |
} | |
}, | |
module: { | |
rules: [ | |
{ | |
test: /\.js$/, | |
loader: "imports-loader?define=>false" | |
} | |
] | |
}, | |
devtool: "source-map" | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment