File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -17,6 +17,7 @@ export default defineConfig(({ mode }) => {
1717 target : 'es2022' ,
1818 outDir : 'dist/core' ,
1919 emptyOutDir : true ,
20+ minify : false ,
2021 sourcemap : mode !== 'production' ,
2122 cssCodeSplit : false ,
2223 modulePreload : {
@@ -30,7 +31,7 @@ export default defineConfig(({ mode }) => {
3031 rollupOptions : {
3132 output : {
3233 entryFileNames : 'react-elements.js' ,
33- chunkFileNames : 'chunks/[name]-[hash].js' ,
34+ chunkFileNames : 'chunks/[name]-[hash].min. js' ,
3435 assetFileNames : ( assetInfo ) => {
3536 if ( assetInfo . name ?. endsWith ( '.css' ) ) {
3637 return 'react-elements.css' ;
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ FROM mcr.microsoft.com/dotnet/sdk:9.0.202-noble-amd64 AS build
1717# COPY --from=node_base /usr/local/bin /usr/local/bin
1818RUN apt-get update
1919RUN apt-get install -y ca-certificates curl gnupg
20- RUN curl -sL https://deb.nodesource.com/setup_18 .x | bash -
20+ RUN curl -sL https://deb.nodesource.com/setup_20 .x | bash -
2121RUN apt-get -y install nodejs
2222ARG BUILD_VERSION
2323WORKDIR /src
You can’t perform that action at this time.
0 commit comments