Skip to content

Commit

Permalink
Fixes to webpack configuration update
Browse files Browse the repository at this point in the history
  • Loading branch information
bvibber committed Jun 17, 2018
1 parent 21b2e2c commit 08536d2
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,10 @@ module.exports = [
rules: [
{
test: /\.swf$/,
loader: 'file-loader?name=[name].[ext]?version=[hash]'
loader: 'file-loader',
options: {
'name': '[name].[ext]?version=[hash]'
}
},
{
test: /\.js$/,
Expand All @@ -43,6 +46,7 @@ module.exports = [
{
// Alt limited entry point for compat testing before loading
entry: './src/js/ogv-support.js',
mode: 'production',
output: {
path: path.resolve(__dirname, BUILD_DIR),
publicPath: publicPath(),
Expand Down

0 comments on commit 08536d2

Please sign in to comment.