Feat: Multiplayer sessions added using CRUD database.
This commit is contained in:
33
node_modules/aos/webpack.config.js
generated
vendored
Normal file
33
node_modules/aos/webpack.config.js
generated
vendored
Normal file
@@ -0,0 +1,33 @@
|
||||
var webpack = require('webpack');
|
||||
var ExtractTextPlugin = require('extract-text-webpack-plugin');
|
||||
var autoprefixer = require('autoprefixer');
|
||||
|
||||
module.exports = {
|
||||
entry: './src/js/aos.js',
|
||||
output: {
|
||||
path: './dist',
|
||||
publicPath: 'dist/',
|
||||
filename: 'aos.js',
|
||||
library: 'AOS',
|
||||
libraryTarget: 'umd',
|
||||
},
|
||||
devServer: {
|
||||
contentBase: 'demo/'
|
||||
},
|
||||
module: {
|
||||
loaders: [
|
||||
{
|
||||
test: /\.js$/,
|
||||
loader: 'babel-loader'
|
||||
},
|
||||
{
|
||||
test: /\.scss$/,
|
||||
loader: ExtractTextPlugin.extract("style-loader", "css-loader?sourceMap!sass-loader!postcss-loader")
|
||||
}
|
||||
]
|
||||
},
|
||||
plugins: [
|
||||
new ExtractTextPlugin('aos.css'),
|
||||
new webpack.optimize.UglifyJsPlugin()
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user