summaryrefslogtreecommitdiff
path: root/webpack.config.js
diff options
context:
space:
mode:
authorYukai Huang2016-11-02 18:01:26 +0800
committerYukai Huang2016-11-02 18:01:26 +0800
commitf1f8846b0adc6dd330286d2edeb399215530a391 (patch)
tree5f0bc5672978798f921a6edf01ac5bba7e1f8574 /webpack.config.js
parent3e23009663d72526f393348f91e45fde93f67236 (diff)
Config extra entry for html.min.css
Diffstat (limited to '')
-rw-r--r--webpack.config.js29
1 files changed, 27 insertions, 2 deletions
diff --git a/webpack.config.js b/webpack.config.js
index 6a436f43..f9d9a6db 100644
--- a/webpack.config.js
+++ b/webpack.config.js
@@ -1,8 +1,33 @@
var baseConfig = require('./webpackBaseConfig');
var ExtractTextPlugin = require("extract-text-webpack-plugin");
+var path = require('path');
-module.exports = Object.assign({}, baseConfig, {
+module.exports = [Object.assign({}, baseConfig, {
plugins: baseConfig.plugins.concat([
new ExtractTextPlugin("[name].css")
])
-});
+}), {
+ entry: {
+ htmlExport: path.join(__dirname, 'public/js/htmlExport.js')
+ },
+ module: {
+ loaders: [{
+ test: /\.css$/,
+ loader: ExtractTextPlugin.extract('style-loader', 'css-loader')
+ }, {
+ test: /\.scss$/,
+ loader: ExtractTextPlugin.extract('style-loader', 'sass-loader')
+ }, {
+ test: /\.less$/,
+ loader: ExtractTextPlugin.extract('style-loader', 'less-loader')
+ }]
+ },
+ output: {
+ path: path.join(__dirname, 'public/build'),
+ publicPath: '/build/',
+ filename: '[name].js'
+ },
+ plugins: [
+ new ExtractTextPlugin("html.min.[hash].css")
+ ]
+}];