Skip to content

Instantly share code, notes, and snippets.

@jacobmischka
Created January 23, 2017 23:09
Show Gist options
  • Save jacobmischka/6a8a0f95f15fc5ca39611df8219ab704 to your computer and use it in GitHub Desktop.
Save jacobmischka/6a8a0f95f15fc5ca39611df8219ab704 to your computer and use it in GitHub Desktop.
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