Skip to content

Commit

Permalink
chore(build): fixes the deployment build (#58)
Browse files Browse the repository at this point in the history
Signed-off-by: sanketshevkar <shevkar.sanket@gmail.com>
  • Loading branch information
sanketshevkar authored Jun 1, 2024
1 parent 519fe63 commit f4292f3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"build": "tsc && NODE_OPTIONS=--max-old-space-size=8192 vite build",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview"
},
Expand Down
2 changes: 1 addition & 1 deletion src/App.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React, { useEffect, useState } from "react";
import { useEffect, useState } from "react";
import { App as AntdApp, Layout, Row, Col, Collapse, theme } from "antd";
import Navbar from "./Navbar";
import AgreementData from "./AgreementData";
Expand Down
2 changes: 1 addition & 1 deletion src/SampleDropdown.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React, { useState } from "react";
import { useState } from "react";
import { Button, Dropdown, Space, message } from "antd";
import { DownOutlined } from "@ant-design/icons";

Expand Down

0 comments on commit f4292f3

Please sign in to comment.