aboutsummaryrefslogtreecommitdiff
path: root/config/webpack.js
diff options
context:
space:
mode:
Diffstat (limited to 'config/webpack.js')
-rw-r--r--config/webpack.js28
1 files changed, 0 insertions, 28 deletions
diff --git a/config/webpack.js b/config/webpack.js
deleted file mode 100644
index 34cccbd..0000000
--- a/config/webpack.js
+++ /dev/null
@@ -1,28 +0,0 @@
-'use strict';
-
-const Path = require('path');
-
-module.exports = {
- entry: ['babel-polyfill', './lib/sumo'],
-
- output: {
- path: Path.resolve(__dirname, '../assets'),
- filename: 'bundle.js',
- publicPath: '/assets/',
- library: 'Sumo'
- },
-
- module: {
- rules: [
- {
- test: /\.js$/,
- use: {
- loader: 'babel-loader',
- options: {
- presets: ['babel-preset-env']
- }
- }
- }
- ]
- }
-}