Created
March 12, 2017 21:49
-
-
Save awestbro/149892879168b52eb0b932ab649c52f6 to your computer and use it in GitHub Desktop.
This file contains 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 CopyWebpackPlugin = require("copy-webpack-plugin"); | |
const ExtractTextPlugin = require('extract-text-webpack-plugin'); | |
const webpack = require('webpack'); | |
module.exports = { | |
entry: ['bootstrap-loader', './web/static/js/app.js'], | |
output: { | |
path: "./priv/static/dist", | |
filename: "app.js" | |
}, | |
plugins: [ | |
new CopyWebpackPlugin([{ from: './web/static/assets/', to: '../' }]), | |
new webpack.ProvidePlugin({ | |
$: "jquery", | |
jQuery: "jquery", | |
"window.jQuery": "jquery", | |
Tether: "tether", | |
"window.Tether": "tether", | |
Alert: "exports-loader?Alert!bootstrap/js/dist/alert", | |
Button: "exports-loader?Button!bootstrap/js/dist/button", | |
Carousel: "exports-loader?Carousel!bootstrap/js/dist/carousel", | |
Collapse: "exports-loader?Collapse!bootstrap/js/dist/collapse", | |
Dropdown: "exports-loader?Dropdown!bootstrap/js/dist/dropdown", | |
Modal: "exports-loader?Modal!bootstrap/js/dist/modal", | |
Popover: "exports-loader?Popover!bootstrap/js/dist/popover", | |
Scrollspy: "exports-loader?Scrollspy!bootstrap/js/dist/scrollspy", | |
Tab: "exports-loader?Tab!bootstrap/js/dist/tab", | |
Tooltip: "exports-loader?Tooltip!bootstrap/js/dist/tooltip", | |
Util: "exports-loader?Util!bootstrap/js/dist/util", | |
}), | |
new ExtractTextPlugin({ filename: 'app.css', allChunks: true }), | |
], | |
module: { | |
loaders: [ | |
{ | |
test: /\.js$/, | |
exclude: /node_modules/, | |
loader: 'babel-loader', | |
query: { | |
presets: ['env'], | |
}, | |
}, | |
{ test: /bootstrap[\/\\]dist[\/\\]js[\/\\]umd[\/\\]/, loader: 'imports-loader?jQuery=jquery' }, | |
{ test: /\.(woff2?|svg)$/, loader: 'url-loader?limit=10000' }, | |
{ test: /\.(ttf|eot)$/, loader: 'file-loader' }, | |
], | |
} | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment