Skip to content

Instantly share code, notes, and snippets.

View SovietFrontier's full-sized avatar
🤘
compiling...

Tim Ivanchuk SovietFrontier

🤘
compiling...
View GitHub Profile
testing test
@SovietFrontier
SovietFrontier / gist:d6d88147affd6a69e7baa97ce32dee79
Created January 3, 2019 18:12
webpack.config for inline css and html
const path = require('path');
var HtmlWebpackInlineSourcePlugin = require('html-webpack-inline-source-plugin');
const HtmlWebpackPlugin = require('html-webpack-plugin');
module.exports = {
entry: './src/directoryFile/directoryFile.ts',
output: {
filename: 'directoryFile.js',
path: path.resolve(__dirname, 'dist/directoryFile')
},