html-webpack-plugin/examples/inline/webpack.config.js

29 lines
763 B
JavaScript
Executable File

var HtmlWebpackPlugin = require('../..');
var ExtractTextPlugin = require('extract-text-webpack-plugin');
var webpackMajorVersion = require('webpack/package.json').version.split('.')[0];
module.exports = {
entry: './example.js',
output: {
path: __dirname + '/dist/webpack-' + webpackMajorVersion,
publicPath: '',
filename: 'bundle.js'
},
module: {
loaders: [
{ test: /\.css$/, loader: ExtractTextPlugin.extract('style-loader', 'css-loader') },
{ test: /\.jade$/, loader: 'jade' }
]
},
plugins: [
new HtmlWebpackPlugin({
inject: false,
template: 'template.jade',
filename: 'index.html',
favicon: 'favicon.ico',
title: 'Jade demo'
}),
new ExtractTextPlugin('styles.css')
]
};