Skip to content

Commit

Permalink
formatter
Browse files Browse the repository at this point in the history
  • Loading branch information
yohamta committed Aug 18, 2022
1 parent e9c826d commit 31ceacd
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions admin/webpack.prod.js
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
const { merge } = require("webpack-merge");
const common = require("./webpack.common.js");
const path = require("path");
const { merge } = require('webpack-merge');
const common = require('./webpack.common.js');
const path = require('path');

module.exports = merge(common, {
mode: "production",
mode: 'production',
module: {
rules: [
{
test: /\.tsx?$/,
use: [
{
loader: "ts-loader",
loader: 'ts-loader',
},
],
include: path.resolve(__dirname, "src"),
exclude: path.resolve(__dirname, "node_modules"),
include: path.resolve(__dirname, 'src'),
exclude: path.resolve(__dirname, 'node_modules'),
},
],
},
Expand Down

0 comments on commit 31ceacd

Please sign in to comment.