Force the use of single quotes

This commit is contained in:
MrTimscampi 2020-05-04 12:44:12 +02:00
parent 8b6dc05d64
commit 9e3ca706c4
217 changed files with 8541 additions and 8540 deletions

View file

@ -1,22 +1,22 @@
const common = require("./webpack.common");
const merge = require("webpack-merge");
const common = require('./webpack.common');
const merge = require('webpack-merge');
module.exports = merge(common, {
mode: "production",
mode: 'production',
module: {
rules: [
{
test: /\.js$/,
exclude: /node_modules[\\/](?!query-string|split-on-first|strict-uri-encode)/,
loader: "babel-loader"
loader: 'babel-loader'
},
{
test: /\.css$/i,
use: ["style-loader", "css-loader", "postcss-loader"]
use: ['style-loader', 'css-loader', 'postcss-loader']
},
{
test: /\.(png|jpg|gif)$/i,
use: ["file-loader"]
use: ['file-loader']
},
{
test: /\.(woff|woff2|eot|ttf|otf)$/,