Skip to content

Commit c880c02

Browse files
committed
fix(vite): disable development mode for aurelia plugin
Switched the `useDev` option to false in the Aurelia plugin configuration to ensure production settings are applied.
1 parent 54b6282 commit c880c02

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

frameworks/non-keyed/aurelia2/vite.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export default defineConfig({
1414
},
1515
plugins: [
1616
aurelia({
17-
useDev: true,
17+
useDev: false,
1818
}),
1919
babel(),
2020
nodePolyfills(),

0 commit comments

Comments
 (0)