UNPKG

tinymce-aws-s3-upload-plugin

Version:

This plugin entegrates a Amazon S3 upload button to your TinyMCE.

42 lines (40 loc) 1.21 kB
var BrowserSyncPlugin = require('browser-sync-webpack-plugin'); var HtmlWebpackPlugin = require('html-webpack-plugin'); var ExtractTextPlugin = require('extract-text-webpack-plugin'); var path = require('path'); module.exports = { entry: [ './app/app.js', './app/plugin.js' ], output: { path: path.join(__dirname, 'dist'), filename: 'bundle.js' }, plugins: [ new HtmlWebpackPlugin({ filename: 'index.html', template: 'app/index.html' }), new BrowserSyncPlugin({ host: 'localhost', port: 3000, server: {baseDir: ['dist']} }), new ExtractTextPlugin("style.css", {allChunks: false}) ], module: { loaders: [ { test: /\.js$/, include: path.join(__dirname, 'app'), loader: 'babel-loader', query: {presets: ['es2015', 'react', 'stage-2']} }, { test: /\.scss$/, include: path.join(__dirname, 'app'), loader: ExtractTextPlugin.extract('style-loader', 'css-loader?minimize!sass') } ] } };