diff options
| author | Marco Rodolfi <marco.rodolfi@tuta.io> | 2023-05-03 22:51:18 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-05-03 21:51:18 +0100 |
| commit | 08d5c942a46df926e18b807a11761e447465def9 (patch) | |
| tree | 190baff7e285ce8269b94b7330e1e17d42f8405f /frontend/rollup.config.js | |
| parent | 35e7c80835866575ea1d8f725f8c07183753e49b (diff) | |
| download | decky-loader-08d5c942a46df926e18b807a11761e447465def9.tar.gz decky-loader-08d5c942a46df926e18b807a11761e447465def9.zip | |
Hotfix for i18n where the detector was overriding localStorage (#439)v2.8.0-pre2
* Hotfix for i18n where the detector was overriding localStorage
* Please, pnpm, cooperate
Diffstat (limited to 'frontend/rollup.config.js')
| -rw-r--r-- | frontend/rollup.config.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/rollup.config.js b/frontend/rollup.config.js index 7fb921fa..360aa142 100644 --- a/frontend/rollup.config.js +++ b/frontend/rollup.config.js @@ -14,7 +14,7 @@ export default defineConfig({ input: 'src/index.tsx', plugins: [ del({ targets: '../backend/static/*', force: true }), - commonjs({include: '../frontend/node_modules/**'}), + commonjs(), nodeResolve({ browser: true }), |
