Compare commits

...

3 Commits

Author SHA1 Message Date
DebaucheryLibrarian 2d15da9a39 1.126.3 2020-09-08 16:52:44 +02:00
DebaucheryLibrarian 611eceff2b Merge branch 'experimental' into master 2020-09-08 16:52:40 +02:00
DebaucheryLibrarian 00f1fc39fa Changed webpack config to use require. 2020-09-08 16:52:31 +02:00
3 changed files with 7 additions and 7 deletions

2
package-lock.json generated
View File

@ -1,6 +1,6 @@
{ {
"name": "traxxx", "name": "traxxx",
"version": "1.126.2", "version": "1.126.3",
"lockfileVersion": 1, "lockfileVersion": 1,
"requires": true, "requires": true,
"dependencies": { "dependencies": {

View File

@ -1,6 +1,6 @@
{ {
"name": "traxxx", "name": "traxxx",
"version": "1.126.2", "version": "1.126.3",
"description": "All the latest porn releases in one place", "description": "All the latest porn releases in one place",
"main": "src/app.js", "main": "src/app.js",
"scripts": { "scripts": {

View File

@ -1,9 +1,9 @@
import path from 'path'; const path = require('path');
import VueLoaderPlugin from 'vue-loader/lib/plugin'; const VueLoaderPlugin = require('vue-loader/lib/plugin');
import MiniCssExtractPlugin from 'mini-css-extract-plugin'; const MiniCssExtractPlugin = require('mini-css-extract-plugin');
import autoprefixer from 'autoprefixer'; const autoprefixer = require('autoprefixer');
export default { module.exports = {
entry: './assets/js/main.js', entry: './assets/js/main.js',
output: { output: {
filename: 'bundle.js', filename: 'bundle.js',