Missing some linting

This commit was merged in pull request #4.
This commit is contained in:
2023-08-31 19:50:42 +02:00
parent 7be98e1793
commit f7009a0732
4 changed files with 260 additions and 260 deletions

View File

@@ -1,23 +1,23 @@
module.exports = {
webpack(config) {
config.module.rules.push({
test: /\.svg$/i,
issuer: /\.[jt]sx?$/,
use: ["@svgr/webpack"],
});
webpack(config) {
config.module.rules.push({
test: /\.svg$/i,
issuer: /\.[jt]sx?$/,
use: ["@svgr/webpack"]
});
return config;
},
async rewrites() {
return [
{
source: "/",
destination: "/home",
},
{
source: "/admin",
destination: "/admin/index.html",
},
];
},
return config;
},
async rewrites() {
return [
{
source: "/",
destination: "/home"
},
{
source: "/admin",
destination: "/admin/index.html"
}
];
}
};