Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion console/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ build-docker:

.PHONY: install
install:
npm install
npm ci
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think install is required before ci.


.PHONY: lint
lint: format-check
Expand Down
4 changes: 2 additions & 2 deletions console/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ ENV VITE_POLARIS_REALM_HEADER_NAME=Polaris-Realm
WORKDIR /app

# Copy package files
COPY package.json ./
COPY package.json package-lock.json ./

# Install dependencies
RUN npm install
RUN npm ci
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is it necessary to use install-clean instead of install?

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think install is required before ci.


# Copy source code (excluding docker directory via .dockerignore)
COPY . .
Expand Down
4 changes: 4 additions & 0 deletions console/vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,8 @@ export default defineConfig({
"@": path.resolve(__dirname, "./src"),
},
},
build: {
cssCodeSplit: false,
sourcemap: false,
},
})