Skip to content

Commit

Permalink
fix: exclude CSS inlined into index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
web-padawan committed Aug 8, 2022
1 parent 60e8426 commit 0efd54f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flow-server/src/main/resources/vite.generated.ts
Original file line number Diff line number Diff line change
Expand Up @@ -488,7 +488,7 @@ export const vaadinConfig: UserConfigFn = (env) => {
themePlugin({devMode}),
postcssLit({
include: ['**/*.css', '**/*.css\?*'],
exclude: [`${themeFolder}/**/*.css`, `${themeFolder}/**/*.css\?*`]
exclude: [`${themeFolder}/**/*.css`, `${themeFolder}/**/*.css\?*`, '**/*\?html-proxy*']
}),
{
name: 'vaadin:force-remove-spa-middleware',
Expand Down

0 comments on commit 0efd54f

Please sign in to comment.