-
-
Notifications
You must be signed in to change notification settings - Fork 341
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
minor #1339 [Site] Stop the ReactSvelteVue Mix (smnandre)
This PR was squashed before being merged into the 2.x branch. Discussion ---------- [Site] Stop the ReactSvelteVue Mix | Q | A | ------------- | --- | Bug fix? |no | New feature? | no | License | MIT Remove a loooot of computation, script, events, by not calling React / Svelte / Vue files except on their demo. Commits ------- 1df6c1f [Site] Stop the ReactSvelteVue Mix
- Loading branch information
Showing
9 changed files
with
42 additions
and
8 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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import {registerReactControllerComponents} from '@symfony/ux-react'; | ||
|
||
import './app.js'; | ||
|
||
registerReactControllerComponents(); |
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,5 @@ | ||
import {registerSvelteControllerComponents} from '@symfony/ux-svelte'; | ||
|
||
import './app.js'; | ||
|
||
registerSvelteControllerComponents(); |
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,5 @@ | ||
import {registerVueControllerComponents} from '@symfony/ux-vue'; | ||
|
||
import './app.js'; | ||
|
||
registerVueControllerComponents(); |
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,15 +1,8 @@ | ||
import './styles/app.scss'; | ||
import { registerReactControllerComponents } from '@symfony/ux-react'; | ||
import {registerVueControllerComponents} from "@symfony/ux-vue"; | ||
import { registerSvelteControllerComponents } from "@symfony/ux-svelte"; | ||
|
||
// start the Stimulus application | ||
import './bootstrap.js'; | ||
|
||
// imported to initialize global plugins | ||
// dropdown, collapse, tab | ||
import * as bootstrap from 'bootstrap'; | ||
|
||
registerReactControllerComponents(); | ||
registerVueControllerComponents(); | ||
registerSvelteControllerComponents(); |
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
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