-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore: Initial vite migration * lint: Fix vite eslint * chore: Migrate HtmlWebpackPlugin * chore: Migrate CopyPlugin * chore: Replace webpack script with vite * ci: Trigger for refactor/ branches * fix: Snippets * chore: Rename index.ejs -> index.html * ci: `static/` -> `dist/` * chore: Migrate ServiceWorker to Vite * chore: Import locales at compile time * chore: Exported locales should contain `data` property * chore: Register SW * ci: Keep it `static/` * refactor: Set output dir from vite config * chore: Add `require(...)` support back * feat: Resolve and stuff * fix: Move index.html * fix: Resolve ambigous import * fix: Browserify path * chore: Remove crypto related stuff I don't do crypto * fix: Use `@akryum/flexsearch-es` REF: nextapps-de/flexsearch#341 * fix: webpack -> vite-ignore * fix: Vite env * chore: Ignore some vite temp files * revert: Vite env * revert: Vite env * chore: More vite env stuff * fix: CSP Imported CSS still doesn't work * fix: Entrypoint shouldn't be a relative path * fix: Adjust initial nonce * chore: TS Checker * fix: Adjust eslintignore * lint: Adjust eslintignore * fix: Adjust lint command * chore: Disable eslint checker for now For some reason it keep ignoring eslintignore (ironic) * chore: It's actually ts checker that keep checking node_modules * fix: lint command * chore: Disable stylelint * fix: Yarn can't be used for lint command * chore: Temporarily disable eslint * fix: CSP in dev mode * chore: CSP adjustment CSP may or may not be fine on prod... we'll see... * fix: Slight adjustment * fix: CSP forr vite-plugin-checker * fix: Resolve warnings * fix: More warning fixing * fix: Yet another warning fixes * fix: SW typing * fix: It's webworker not dom * chore: Remove webpack * chore: Disable eslint and stylelint * fix: Hopefully one last error fix * chore: Update immer to v10 * fix: Regex * chore: Update more deps * chore: Downgrade toast to v2.4.0 * chore: Remove dangerfile * fix: Dynamic locale import * fix: Try use __webpack_nonce__ just in case * fix: vite-plugin-require * revert: Revert "fix: vite-plugin-require" This reverts commit 7c4e15f. * chore: Remove keymap temporarily * fix: Goober * fix: nonce * chore: Temporarily disable hotkey * fix: Properly null check textarea * fix: NODE_ENV
- Loading branch information
Showing
100 changed files
with
2,815 additions
and
3,105 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
NODE_ENV=development | ||
# NODE_ENV=development | ||
# BACKEND_URL="https://example.com" | ||
# PROXY_HTTPS_INSECURE=false |
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
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 |
---|---|---|
|
@@ -9,6 +9,8 @@ | |
/.vs/ | ||
yarn-error.log* | ||
/junit.xml | ||
*.timestamp-* | ||
*.bundled_* | ||
|
||
/static/ | ||
/static-test/ | ||
|
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
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,9 @@ | ||
import type { BuildConfig } from './build-config-compiletime'; | ||
|
||
export const { | ||
NODE_ENV, | ||
BACKEND_URL, | ||
FE_SUBDIRECTORY, | ||
FE_INSTANCE_SOURCE_DIR, | ||
SENTRY_DSN, | ||
} = import.meta.compileTime<BuildConfig>('./build-config-compiletime.ts'); |
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
Oops, something went wrong.