mirror of
https://github.com/cinnyapp/cinny.git
synced 2025-09-13 14:22:25 +03:00
replaced commonmark with micromark and gfm support
This commit is contained in:
parent
59226365c5
commit
f49048c6e1
5 changed files with 662 additions and 100 deletions
|
@ -1,5 +1,6 @@
|
|||
const HtmlWebpackPlugin = require('html-webpack-plugin');
|
||||
const FaviconsWebpackPlugin = require('favicons-webpack-plugin');
|
||||
const webpack = require('webpack');
|
||||
|
||||
module.exports = {
|
||||
entry: {
|
||||
|
@ -14,6 +15,7 @@ module.exports = {
|
|||
'fs': require.resolve('browserify-fs'),
|
||||
'stream': require.resolve('stream-browserify'),
|
||||
'util': require.resolve('util/'),
|
||||
'assert': require.resolve('assert/'),
|
||||
}
|
||||
},
|
||||
node: {
|
||||
|
@ -64,6 +66,9 @@ module.exports = {
|
|||
appleStartup: false,
|
||||
}
|
||||
}
|
||||
})
|
||||
}),
|
||||
new webpack.DefinePlugin({
|
||||
'process.env': JSON.stringify(process.env),
|
||||
}),
|
||||
],
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue