summaryrefslogtreecommitdiff
path: root/webpack.config.js
diff options
context:
space:
mode:
authorWu Cheng-Han2017-03-13 18:56:32 +0800
committerWu Cheng-Han2017-03-13 18:56:32 +0800
commitedb1b4aa0a72ac8b0215211c9dbc54156c3ff91f (patch)
treefb5f8ddbfe9001e266b3b2487c3b2e62fbd2bbb5 /webpack.config.js
parentc818cde78285490ec2931b68a72898f9754a6d81 (diff)
parent8246ac38506f8d62e2dd9699dcc4d62f14b65784 (diff)
Merge branch 'master' of https://github.com/jackycute/HackMD
Diffstat (limited to 'webpack.config.js')
-rw-r--r--webpack.config.js60
1 files changed, 30 insertions, 30 deletions
diff --git a/webpack.config.js b/webpack.config.js
index 236490b9..f9f0a1c9 100644
--- a/webpack.config.js
+++ b/webpack.config.js
@@ -1,33 +1,33 @@
-var baseConfig = require('./webpackBaseConfig');
-var ExtractTextPlugin = require("extract-text-webpack-plugin");
-var path = require('path');
+var baseConfig = require('./webpackBaseConfig')
+var ExtractTextPlugin = require('extract-text-webpack-plugin')
+var path = require('path')
module.exports = [Object.assign({}, baseConfig, {
- plugins: baseConfig.plugins.concat([
- new ExtractTextPlugin("[name].css")
- ])
+ 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.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.css')
+ ]
+}]