mirror of https://github.com/status-im/codimd.git
Config extra entry for html.min.css
This commit is contained in:
parent
3e23009663
commit
f1f8846b0a
|
@ -588,7 +588,7 @@ function exportToHTML(view) {
|
||||||
var tocAffix = $('#ui-toc-affix').clone();
|
var tocAffix = $('#ui-toc-affix').clone();
|
||||||
tocAffix.find('*').removeClass('active').find("a[href^='#'][smoothhashscroll]").removeAttr('smoothhashscroll');
|
tocAffix.find('*').removeClass('active').find("a[href^='#'][smoothhashscroll]").removeAttr('smoothhashscroll');
|
||||||
//generate html via template
|
//generate html via template
|
||||||
$.get(serverurl + '/css/html.min.css', function (css) {
|
$.get(serverurl + '/build/html.min.css', function (css) {
|
||||||
$.get(serverurl + '/views/html.hbs', function (data) {
|
$.get(serverurl + '/views/html.hbs', function (data) {
|
||||||
var template = Handlebars.compile(data);
|
var template = Handlebars.compile(data);
|
||||||
var context = {
|
var context = {
|
||||||
|
|
|
@ -0,0 +1,5 @@
|
||||||
|
require('../css/github-extract.css');
|
||||||
|
require('../css/markdown.css');
|
||||||
|
require('../css/extra.css');
|
||||||
|
require('../css/slide-preview.css');
|
||||||
|
require('../css/site.css');
|
|
@ -1,8 +1,33 @@
|
||||||
var baseConfig = require('./webpackBaseConfig');
|
var baseConfig = require('./webpackBaseConfig');
|
||||||
var ExtractTextPlugin = require("extract-text-webpack-plugin");
|
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([
|
plugins: baseConfig.plugins.concat([
|
||||||
new ExtractTextPlugin("[name].css")
|
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")
|
||||||
|
]
|
||||||
|
}];
|
||||||
|
|
|
@ -3,7 +3,7 @@ var webpack = require('webpack');
|
||||||
var path = require('path');
|
var path = require('path');
|
||||||
var ExtractTextPlugin = require("extract-text-webpack-plugin");
|
var ExtractTextPlugin = require("extract-text-webpack-plugin");
|
||||||
|
|
||||||
module.exports = Object.assign({}, baseConfig, {
|
module.exports = [Object.assign({}, baseConfig, {
|
||||||
plugins: baseConfig.plugins.concat([
|
plugins: baseConfig.plugins.concat([
|
||||||
new webpack.DefinePlugin({
|
new webpack.DefinePlugin({
|
||||||
'process.env': {
|
'process.env': {
|
||||||
|
@ -25,4 +25,33 @@ module.exports = Object.assign({}, baseConfig, {
|
||||||
publicPath: '/build/',
|
publicPath: '/build/',
|
||||||
filename: '[id].[name].[hash].js'
|
filename: '[id].[name].[hash].js'
|
||||||
}
|
}
|
||||||
});
|
}), {
|
||||||
|
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 webpack.DefinePlugin({
|
||||||
|
'process.env': {
|
||||||
|
'NODE_ENV': JSON.stringify('production')
|
||||||
|
}
|
||||||
|
}),
|
||||||
|
new ExtractTextPlugin("html.min.css")
|
||||||
|
]
|
||||||
|
}];
|
||||||
|
|
Loading…
Reference in New Issue