diff options
author | Vitaly Takmazov | 2016-12-12 17:47:55 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2016-12-12 17:47:55 +0300 |
commit | 1702d4f5e4eace80a1323e520b004a08497e3309 (patch) | |
tree | ef94261fc72008fd47f20a0842981de7bdecc85c /juick-ws/webpack.config.js | |
parent | cf5d3c5a78ae5be2209bb0d0d91ce1eaf0296c04 (diff) |
juick-ws: drop status servlet
Diffstat (limited to 'juick-ws/webpack.config.js')
-rw-r--r-- | juick-ws/webpack.config.js | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/juick-ws/webpack.config.js b/juick-ws/webpack.config.js deleted file mode 100644 index e6d33a06..00000000 --- a/juick-ws/webpack.config.js +++ /dev/null @@ -1,29 +0,0 @@ -var webpack = require("webpack"); -var globby = require("globby"); -var precss = require('precss'); -var autoprefixer = require('autoprefixer'); -var ExtractTextPlugin = require("extract-text-webpack-plugin") -module.exports = { - entry: { - "scripts" : globby.sync([ - __dirname + "/src/main/static/*.*" - ]) - }, - output: { - path: __dirname + "/src/main/webapp", - filename: "[name].js" - }, - module: { - loaders: [ - { test: /\.css$/, loader: ExtractTextPlugin.extract("style-loader", "css-loader!postcss-loader") } - ] - }, - plugins: [ - new ExtractTextPlugin("style.css", { - allChunks: true - }) - ], - postcss: function() { - return [require("postcss-import")({ addDependencyTo: webpack, path: ['node_modules'] }), precss({'import': {disable: true}}), autoprefixer]; - } -}
\ No newline at end of file |