prettier all the files

This commit is contained in:
sawka
2023-08-21 21:37:04 -07:00
parent 8b473607c7
commit c8cae274bc
52 changed files with 8628 additions and 8083 deletions
+5 -6
View File
@@ -1,7 +1,7 @@
const webpack = require('webpack');
const merge = require('webpack-merge');
const common = require('./webpack.common.js');
const path = require('path');
const webpack = require("webpack");
const merge = require("webpack-merge");
const common = require("./webpack.common.js");
const path = require("path");
const CopyPlugin = require("copy-webpack-plugin");
const VERSION = require("./version.js");
@@ -18,7 +18,7 @@ var merged = merge.merge(common, {
},
port: 9000,
headers: {
'Cache-Control': 'no-store',
"Cache-Control": "no-store",
},
},
watchOptions: {
@@ -34,4 +34,3 @@ var definePlugin = new webpack.DefinePlugin({
merged.plugins.push(definePlugin);
module.exports = merged;