Feat: Multiplayer sessions added using CRUD database.

This commit is contained in:
2026-02-10 11:49:38 +00:00
parent bbbd21d4ad
commit fa81fddbd4
6850 changed files with 808827 additions and 8 deletions

33
node_modules/aos/webpack.config.js generated vendored Normal file
View 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()
]
}