HackMD/webpack.config.js

34 lines
1.0 KiB
JavaScript
Raw Normal View History

2016-10-11 07:45:00 +00:00
var baseConfig = require('./webpackBaseConfig');
2016-11-02 03:25:21 +00:00
var ExtractTextPlugin = require("extract-text-webpack-plugin");
2016-11-02 10:01:26 +00:00
var path = require('path');
2016-10-07 15:05:23 +00:00
2016-11-02 10:01:26 +00:00
module.exports = [Object.assign({}, baseConfig, {
2016-11-02 03:25:21 +00:00
plugins: baseConfig.plugins.concat([
new ExtractTextPlugin("[name].css")
])
2016-11-02 10:01:26 +00:00
}), {
entry: {
htmlExport: path.join(__dirname, 'public/js/htmlExport.js')
},
module: {
loaders: [{
test: /\.css$/,
loader: ExtractTextPlugin.extract({ fallback: 'style-loader', use: 'css-loader' })
2016-11-02 10:01:26 +00:00
}, {
test: /\.scss$/,
loader: ExtractTextPlugin.extract({ fallback: 'style-loader', use: 'sass-loader' })
2016-11-02 10:01:26 +00:00
}, {
test: /\.less$/,
loader: ExtractTextPlugin.extract({ fallback: 'style-loader', use: 'less-loader' })
2016-11-02 10:01:26 +00:00
}]
},
output: {
path: path.join(__dirname, 'public/build'),
publicPath: '/build/',
filename: '[name].js'
},
plugins: [
2016-11-02 13:49:31 +00:00
new ExtractTextPlugin("html.min.css")
2016-11-02 10:01:26 +00:00
]
}];