最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - "@vitejsplugin-react can't detect preamble. Something is wrong." console message with fla

programmeradmin0浏览0评论

I wanted to use flask-vite to add some React ponents to my app.

I started by using the flask-vite Flask plugin to add Vite to my Flask project.

Then I installed React and carefully updated the configuration files, using a freshly created React project that I made with Vite as a reference.

I couldn't get my React ponents to show up, and the only clue was this console message:

@vitejs/plugin-react can't detect preamble. Something is wrong.

I searched for this message and found lots of pages that weren't very helpful.

I wanted to use flask-vite to add some React ponents to my app.

I started by using the flask-vite Flask plugin to add Vite to my Flask project.

Then I installed React and carefully updated the configuration files, using a freshly created React project that I made with Vite as a reference.

I couldn't get my React ponents to show up, and the only clue was this console message:

@vitejs/plugin-react can't detect preamble. Something is wrong.

I searched for this message and found lots of pages that weren't very helpful.

Share Improve this question asked Feb 10, 2024 at 4:56 Joel SullivanJoel Sullivan 1,7751 gold badge15 silver badges14 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 7

If you are using Laravel.

Simply add this in the HTML head in Laravel blade file(app.blade.php) @viteReactRefresh

<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <meta name="viewport" content="width=device-width, initial-scale=1">
        <title>Laravel</title>
        @viteReactRefresh 
        @vite(['resources/css/app.css', 'resources/js/Website/app.jsx'])
        @inertiaHead
    </head>
    <body>
        @inertia
    </body>
</html>

I got React to work by adding this HTML to my templates/base.html Jinja template:

<script type="module">
    import RefreshRuntime from 'http://localhost:3000/@react-refresh'
    RefreshRuntime.injectIntoGlobalHook(window)
    window.$RefreshReg$ = () => {}
    window.$RefreshSig$ = () => (type) => type
    window.__vite_plugin_react_preamble_installed__ = true
</script>

This can go right before or after the <html> opening tag, and is crucial for giving React access to the DOM. I found it at https://vitejs.dev/guide/backend-integration.html.

After that flask-vite worked well for integrating React ponents into my Flask app.

与本文相关的文章

发布评论

评论列表(0)

  1. 暂无评论