This commit is contained in:
2024-03-18 18:10:05 +05:00
parent a2bbe70589
commit 2c2e512c39
3 changed files with 5 additions and 2 deletions
+2 -2
View File
@@ -10,8 +10,8 @@
/coverage
# next.js
/.next/
/out/
/.next
/dist
# production
/build
+2
View File
@@ -1,6 +1,8 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
output: "export",
trailingSlash: true,
distDir: "dist",
};
export default nextConfig;
+1
View File
@@ -1,6 +1,7 @@
/* eslint-disable @next/next/no-img-element */
/* eslint-disable no-irregular-whitespace */
"use client";
import "react-rangeslider/lib/index.css";
import "../components/RangeSlider.css";
import api from "@utils/api";