Replies: 1 comment 1 reply
-
As long as there's a vite plugin you can add to the You don't have to use the WXT modules for the frontend, you can just use vite plugins. The WXT modules just add some default config. For example, react, is as simple as this: // wxt.config.ts
import { defineConfig } from 'wxt';
import react from '@vitejs/plugin-react';
export default defineConfig({
vite: () => ({
plugins: [react()],
}),
}); If a similar plugin for angular exists, you may be able to do something similar. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
As an angular developer, I am wondering if Angular can be used with wxt. Vite is available in recent versions of Angular.
Beta Was this translation helpful? Give feedback.
All reactions