-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'work/using-react-with-bootstrap4'
- Loading branch information
Showing
8 changed files
with
5,966 additions
and
4,517 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"extends": "react-app" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10,361 changes: 5,922 additions & 4,439 deletions
10,361
ukelonn.web.frontend/src/main/frontend/package-lock.json
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
import { defineConfig } from 'vite'; | ||
import eslintPlugin from "@nabla/vite-plugin-eslint"; | ||
|
||
export default defineConfig({ | ||
plugins: [eslintPlugin()], | ||
build: { | ||
minify: false, | ||
sourcemap: true, | ||
manifest: true, | ||
rollupOptions: { | ||
// overwrite default .html entry | ||
input: 'index.js', | ||
output: { | ||
entryFileNames: `assets/[name].js`, | ||
chunkFileNames: `assets/[name].js`, | ||
assetFileNames: `assets/[name].[ext]` | ||
} | ||
}, | ||
// Relative to the root | ||
outDir: '../../../target/classes', | ||
}, | ||
// Treat .js files as jsx | ||
esbuild: { | ||
include: /\.js$/, | ||
exclude: [], | ||
loader: 'jsx', | ||
}, | ||
}); |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters