From b34ef76b04ec58a710b5786af3540caacae1beba Mon Sep 17 00:00:00 2001 From: Jan Nicklas Date: Wed, 8 Jul 2015 14:56:07 +0200 Subject: [PATCH] Fix example paths --- examples/custom-template/webpack.config.js | 2 +- examples/html-loader/webpack.config.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/custom-template/webpack.config.js b/examples/custom-template/webpack.config.js index d979a9a..7df9d54 100755 --- a/examples/custom-template/webpack.config.js +++ b/examples/custom-template/webpack.config.js @@ -1,4 +1,4 @@ -var HtmlWebpackPlugin = require('..'); +var HtmlWebpackPlugin = require('../..'); var ExtractTextPlugin = require('extract-text-webpack-plugin'); module.exports = { entry: './example.js', diff --git a/examples/html-loader/webpack.config.js b/examples/html-loader/webpack.config.js index a83e57b..e31a36a 100755 --- a/examples/html-loader/webpack.config.js +++ b/examples/html-loader/webpack.config.js @@ -1,4 +1,4 @@ -var HtmlWebpackPlugin = require('..'); +var HtmlWebpackPlugin = require('../..'); var ExtractTextPlugin = require('extract-text-webpack-plugin'); module.exports = { entry: './example.js',