Created
April 27, 2016 18:25
-
-
Save ufukomer/75b98b20d48680a207ecd2149d7368fc to your computer and use it in GitHub Desktop.
Webpack font loader pattern.
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
var config = { | |
entry: './app.js', | |
output: { | |
filename: 'bundle.js' | |
}, | |
module: { | |
loaders: [{ | |
test: /\.css$/, | |
loader: 'style!css?sourceMap' | |
}, { | |
test: /\.woff(\?v=\d+\.\d+\.\d+)?$/, | |
loader: "url?limit=10000&mimetype=application/font-woff" | |
}, { | |
test: /\.woff2(\?v=\d+\.\d+\.\d+)?$/, | |
loader: "url?limit=10000&mimetype=application/font-woff" | |
}, { | |
test: /\.ttf(\?v=\d+\.\d+\.\d+)?$/, | |
loader: "url?limit=10000&mimetype=application/octet-stream" | |
}, { | |
test: /\.eot(\?v=\d+\.\d+\.\d+)?$/, | |
loader: "file" | |
}, { | |
test: /\.svg(\?v=\d+\.\d+\.\d+)?$/, | |
loader: "url?limit=10000&mimetype=image/svg+xml" | |
}] | |
} | |
}; | |
module.exports = config; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment