We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 08518db commit 76bfedeCopy full SHA for 76bfede
prototype/lvis-ui/Dockerfile
@@ -2,7 +2,7 @@ FROM node:20.16.0 AS build
2
3
WORKDIR /app
4
COPY package*.json ./
5
-
+COPY . .
6
# Install dependencies and build the app
7
RUN npm install
8
RUN npm run build
prototype/lvis-ui/vite.config.js
@@ -4,6 +4,10 @@ import svgr from "vite-plugin-svgr";
// https://vitejs.dev/config/
export default defineConfig({
plugins: [react(), svgr()],
+ root: './',
+ build: {
9
+ outDir: 'dist',
10
+ },
11
css: {
12
preprocessorOptions: {
13
scss: {
0 commit comments